forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 1
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 8784
* upstream/master: expect: Display equal values for ReturnedWith similar to CalledWith (jestjs#8791) Clearer messages for Node assert errors (jestjs#8792) use babel-plugin-replace-ts-export-assignment package (jestjs#8805) jest-matcher-utils: Add color options to matcherHint (jestjs#8795) chore: Make sure copyright header comment includes license (jestjs#8783)
- Loading branch information
Showing
169 changed files
with
1,108 additions
and
401 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
// 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:5 | ||
console.log __tests__/beforeAllFiltered.test.js:10 | ||
beforeAll 1 | ||
console.log __tests__/beforeAllFiltered.test.js:8 | ||
console.log __tests__/beforeAllFiltered.test.js:13 | ||
beforeEach 1 | ||
console.log __tests__/beforeAllFiltered.test.js:17 | ||
console.log __tests__/beforeAllFiltered.test.js:22 | ||
It Foo | ||
console.log __tests__/beforeAllFiltered.test.js:11 | ||
console.log __tests__/beforeAllFiltered.test.js:16 | ||
afterEach 1 | ||
console.log __tests__/beforeAllFiltered.test.js:14 | ||
console.log __tests__/beforeAllFiltered.test.js:19 | ||
afterAll 1 | ||
`; |
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,19 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`Correct beforeEach order ensures the correct order for beforeEach 1`] = ` | ||
console.log __tests__/beforeEachQueue.test.js:5 | ||
console.log __tests__/beforeEachQueue.test.js:10 | ||
BeforeEach | ||
console.log __tests__/beforeEachQueue.test.js:9 | ||
console.log __tests__/beforeEachQueue.test.js:14 | ||
It Foo | ||
console.log __tests__/beforeEachQueue.test.js:12 | ||
console.log __tests__/beforeEachQueue.test.js:17 | ||
BeforeEach Inline Foo | ||
console.log __tests__/beforeEachQueue.test.js:5 | ||
console.log __tests__/beforeEachQueue.test.js:10 | ||
BeforeEach | ||
console.log __tests__/beforeEachQueue.test.js:17 | ||
console.log __tests__/beforeEachQueue.test.js:22 | ||
It Bar | ||
`; |
Oops, something went wrong.