Skip to content

Commit f62b60a

Browse files
authored
[DI] Improve integration test error handling (#5500)
In case the integration tests times out trying to create the sandbox, don't also fail trying to remove it (since it doesn't exist).
1 parent a029cac commit f62b60a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

integration-tests/debugger/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function setup ({ env, testApp, testAppSource } = {}) {
7979
})
8080

8181
after(async function () {
82-
await sandbox.remove()
82+
await sandbox?.remove()
8383
})
8484

8585
beforeEach(async function () {

0 commit comments

Comments
 (0)