-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: confirm the expected generated tests
- Loading branch information
Showing
4 changed files
with
35 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
node_modules/ | ||
cypress/videos/ |
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,28 @@ | ||
{ | ||
"A": { | ||
"checks out for A": "passed" | ||
}, | ||
"1": { | ||
"checks out for 1": "passed" | ||
}, | ||
"using it.each": { | ||
"checks A": "passed", | ||
"checks 1": "passed", | ||
"capital letter A !== a": "passed" | ||
}, | ||
"has expected values": { | ||
"A = A": "passed", | ||
"1 = 1": "passed", | ||
"capital letter A !== a": "passed" | ||
}, | ||
"add()": { | ||
"adds 1 and 1 then returns 2": "passed", | ||
"adds 2 and -2 then returns 0": "passed", | ||
"adds 140 and 48 then returns 188": "passed", | ||
"with invalid arguments": { | ||
"adds 1 and \"foo\" then returns NaN": "passed", | ||
"adds null and 10 then returns NaN": "passed", | ||
"adds {} and [] then returns NaN": "passed" | ||
} | ||
} | ||
} |
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