-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: support errors with circular dependencies in object values with …
…--parallel (#5212) * fix: support errors with circular dependencies in object values with --parallel * Also handle nested non-writable getters
- Loading branch information
1 parent
f44f71b
commit ba0fefe
Showing
6 changed files
with
68 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
15 changes: 15 additions & 0 deletions
15
test/integration/fixtures/parallel/circular-error-object.mjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import {describe,it} from "../../../../index.js"; | ||
|
||
describe('test1', () => { | ||
it('test', () => { | ||
const errorA = {}; | ||
const objectB = {toA: errorA}; | ||
errorA.toB = objectB; | ||
|
||
const error = new Error("Oh no!"); | ||
error.error = errorA; | ||
error.values = [errorA]; | ||
|
||
throw error; | ||
}); | ||
}); |
15 changes: 15 additions & 0 deletions
15
test/integration/fixtures/parallel/getter-error-object.mjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import {describe, it} from '../../../../index.js'; | ||
|
||
describe('test1', () => { | ||
it('test', async () => { | ||
const error = new Error('Oh no!'); | ||
|
||
error.nested = { | ||
get inner() { | ||
return 'abc'; | ||
} | ||
}; | ||
|
||
throw error; | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters