-
-
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.
Add tagged template literal each logic
- Loading branch information
1 parent
fbb5572
commit 36952c5
Showing
3 changed files
with
346 additions
and
73 deletions.
There are no files selected for viewing
73 changes: 73 additions & 0 deletions
73
packages/jest-jasmine2/src/__tests__/__snapshots__/each.test.js.snap
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,73 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`installEach .describe Table Tagged Template Literal throws error when there are fewer arguments than headings over multiple rows 1`] = ` | ||
"Tagged Template Literal test error: | ||
Not enough arguments supplied for given headings: a | b | expected | ||
Received: 0,1,1,1,1" | ||
`; | ||
|
||
exports[`installEach .describe Table Tagged Template Literal throws error when there are fewer arguments than headings when given one row 1`] = ` | ||
"Tagged Template Literal test error: | ||
Not enough arguments supplied for given headings: a | b | expected | ||
Received: 0,1" | ||
`; | ||
|
||
exports[`installEach .fdescribe Table Tagged Template Literal throws error when there are fewer arguments than headings over multiple rows 1`] = ` | ||
"Tagged Template Literal test error: | ||
Not enough arguments supplied for given headings: a | b | expected | ||
Received: 0,1,1,1,1" | ||
`; | ||
|
||
exports[`installEach .fdescribe Table Tagged Template Literal throws error when there are fewer arguments than headings when given one row 1`] = ` | ||
"Tagged Template Literal test error: | ||
Not enough arguments supplied for given headings: a | b | expected | ||
Received: 0,1" | ||
`; | ||
|
||
exports[`installEach .fit Table Tagged Template Literal throws error when there are fewer arguments than headings over multiple rows 1`] = ` | ||
"Tagged Template Literal test error: | ||
Not enough arguments supplied for given headings: a | b | expected | ||
Received: 0,1,1,1,1" | ||
`; | ||
|
||
exports[`installEach .fit Table Tagged Template Literal throws error when there are fewer arguments than headings when given one row 1`] = ` | ||
"Tagged Template Literal test error: | ||
Not enough arguments supplied for given headings: a | b | expected | ||
Received: 0,1" | ||
`; | ||
|
||
exports[`installEach .it Table Tagged Template Literal throws error when there are fewer arguments than headings over multiple rows 1`] = ` | ||
"Tagged Template Literal test error: | ||
Not enough arguments supplied for given headings: a | b | expected | ||
Received: 0,1,1,1,1" | ||
`; | ||
|
||
exports[`installEach .it Table Tagged Template Literal throws error when there are fewer arguments than headings when given one row 1`] = ` | ||
"Tagged Template Literal test error: | ||
Not enough arguments supplied for given headings: a | b | expected | ||
Received: 0,1" | ||
`; | ||
|
||
exports[`installEach .xdescribe Table Tagged Template Literal throws error when there are fewer arguments than headings over multiple rows 1`] = ` | ||
"Tagged Template Literal test error: | ||
Not enough arguments supplied for given headings: a | b | expected | ||
Received: 0,1,1,1,1" | ||
`; | ||
|
||
exports[`installEach .xdescribe Table Tagged Template Literal throws error when there are fewer arguments than headings when given one row 1`] = ` | ||
"Tagged Template Literal test error: | ||
Not enough arguments supplied for given headings: a | b | expected | ||
Received: 0,1" | ||
`; | ||
|
||
exports[`installEach .xit Table Tagged Template Literal throws error when there are fewer arguments than headings over multiple rows 1`] = ` | ||
"Tagged Template Literal test error: | ||
Not enough arguments supplied for given headings: a | b | expected | ||
Received: 0,1,1,1,1" | ||
`; | ||
|
||
exports[`installEach .xit Table Tagged Template Literal throws error when there are fewer arguments than headings when given one row 1`] = ` | ||
"Tagged Template Literal test error: | ||
Not enough arguments supplied for given headings: a | b | expected | ||
Received: 0,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
Oops, something went wrong.