-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into get-rid-of-node6
- Loading branch information
Showing
283 changed files
with
5,154 additions
and
2,679 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,11 +1,19 @@ | ||
# EditorConfig helps developers define and maintain consistent | ||
# coding styles between different editors and IDEs | ||
# editorconfig.org | ||
# | ||
# Some of these options are also respected by Prettier | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[{*.md,*.snap}] | ||
[*.{md,snap}] | ||
trim_trailing_whitespace = false |
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,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.