forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into uglier-inline-sna…
…pshots * upstream/master: (39 commits) Prints the Symbol name into the error message with a custom asymmetric matcher (jestjs#9888) Show coverage of sources related to tests in changed files (jestjs#9769) fix: don't /// <reference types="jest" /> (jestjs#9875) noCodeFrame respects noStackTrace (jestjs#9866) chore: update example to react-native@0.62 (jestjs#9746) Improve source map handling when instrumenting transformed code (jestjs#9811) Update .vscode/launch.json settings (jestjs#9868) chore: verify all packages have the same engine requirement (jestjs#9871) fix: pass custom cached realpath function to `resolve` (jestjs#9873) chore: mock stealthy-require in tests (jestjs#9855) chore: update resolve (jestjs#9872) chore: run CircleCI on node 14 (jestjs#9870) Add an option to vscode settings to always use workspace TS (jestjs#9869) fix(esm): handle parallel imports (jestjs#9858) chore: run CI on Node 14 (jestjs#9861) feat: add `@jest/globals` package for importing globals explici… (jestjs#9849) chore: bump resolve package (jestjs#9859) chore(runtime): simplify `createJestObjectFor` (jestjs#9857) chore: fix symlink creation failures on windows in tests (jestjs#9852) chore: skip mercurial tests when no hg installed (jestjs#9840) ...
- Loading branch information
Showing
200 changed files
with
2,846 additions
and
1,055 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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,29 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`Correct BeforeAll run ensures the BeforeAll of ignored suite is not run 1`] = ` | ||
console.log __tests__/beforeAllFiltered.test.js:10 | ||
console.log | ||
beforeAll 1 | ||
console.log __tests__/beforeAllFiltered.test.js:13 | ||
at log (__tests__/beforeAllFiltered.test.js:10:13) | ||
console.log | ||
beforeEach 1 | ||
console.log __tests__/beforeAllFiltered.test.js:22 | ||
at log (__tests__/beforeAllFiltered.test.js:13:13) | ||
console.log | ||
It Foo | ||
console.log __tests__/beforeAllFiltered.test.js:16 | ||
at log (__tests__/beforeAllFiltered.test.js:22:13) | ||
console.log | ||
afterEach 1 | ||
console.log __tests__/beforeAllFiltered.test.js:19 | ||
at log (__tests__/beforeAllFiltered.test.js:16:13) | ||
console.log | ||
afterAll 1 | ||
at log (__tests__/beforeAllFiltered.test.js:19:13) | ||
`; |
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 |
---|---|---|
@@ -1,19 +1,29 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`Correct beforeEach order ensures the correct order for beforeEach 1`] = ` | ||
console.log __tests__/beforeEachQueue.test.js:10 | ||
console.log | ||
BeforeEach | ||
console.log __tests__/beforeEachQueue.test.js:14 | ||
at Object.log (__tests__/beforeEachQueue.test.js:10:13) | ||
console.log | ||
It Foo | ||
console.log __tests__/beforeEachQueue.test.js:17 | ||
at Object.log (__tests__/beforeEachQueue.test.js:14:13) | ||
console.log | ||
BeforeEach Inline Foo | ||
console.log __tests__/beforeEachQueue.test.js:10 | ||
at Object.log (__tests__/beforeEachQueue.test.js:17:15) | ||
console.log | ||
BeforeEach | ||
console.log __tests__/beforeEachQueue.test.js:22 | ||
at Object.log (__tests__/beforeEachQueue.test.js:10:13) | ||
console.log | ||
It Bar | ||
at Object.log (__tests__/beforeEachQueue.test.js:22:13) | ||
`; |
Oops, something went wrong.