8000 feat(site): display devcontainer start error by DanielleMaywood · Pull Request #18637 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat(site): display devcontainer start error #18637

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Jun 30, 2025
Prev Previous commit
chore: appease linter
  • Loading branch information
DanielleMaywood committed Jun 30, 2025
commit c0b9d12ba5ce83de42f76d72751b44e95d2ab0a6
3 changes: 1 addition & 2 deletions agent/agentcontainers/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package agentcontainers_test
import (
"context"
"encoding/json"
"errors"
"fmt"
"math/rand"
"net/http"
Expand Down Expand Up @@ -1717,7 +1716,7 @@ func TestAPI(t *testing.T) {
require.Equal(t, http.StatusAccepted, rec.Code)

// Given: We simulate an error running `devcontainer up`
simulatedError := errors.New("simulated error")
simulatedError := xerrors.New("simulated error")
testutil.RequireSend(ctx, t, fDCCLI.upErrC, simulatedError)

nowRecreateErrorTrap.MustWait(ctx).MustRelease(ctx)
Expand Down
Loading
0