-
Notifications
You must be signed in to change notification settings - Fork 782
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Trent Willis
committed
Mar 19, 2017
1 parent
d7eded5
commit 84b2451
Showing
4 changed files
with
92 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
// Expected outputs from the TapReporter for the commands run in CLI tests | ||
module.exports = { | ||
"qunit": | ||
`TAP version 13 | ||
ok 1 First > 1 | ||
ok 2 Second > 1 | ||
1..2 | ||
# pass 2 | ||
# skip 0 | ||
# todo 0 | ||
# fail 0`, | ||
|
||
"qunit 'glob/**/*-test.js'": | ||
`TAP version 13 | ||
ok 1 A-Test > derp | ||
ok 2 Nested-Test > herp | ||
1..2 | ||
# pass 2 | ||
# skip 0 | ||
# todo 0 | ||
# fail 0`, | ||
|
||
"qunit single.js": | ||
`TAP version 13 | ||
ok 1 Single > has a test | ||
1..1 | ||
# pass 1 | ||
# skip 0 | ||
# todo 0 | ||
# fail 0`, | ||
|
||
"qunit single.js double.js": | ||
`TAP version 13 | ||
ok 1 Double > has a test | ||
ok 2 Double > has another test | ||
ok 3 Single > has a test | ||
1..3 | ||
# pass 3 | ||
# skip 0 | ||
# todo 0 | ||
# fail 0`, | ||
|
||
"qunit test": | ||
`TAP version 13 | ||
ok 1 First > 1 | ||
ok 2 Second > 1 | ||
1..2 | ||
# pass 2 | ||
# skip 0 | ||
# todo 0 | ||
# fail 0`, | ||
|
||
"qunit test single.js 'glob/**/*-test.js'": | ||
`TAP version 13 | ||
ok 1 A-Test > derp | ||
ok 2 Nested-Test > herp | ||
ok 3 Single > has a test | ||
ok 4 First > 1 | ||
ok 5 Second > 1 | ||
1..5 | ||
# pass 5 | ||
# skip 0 | ||
# todo 0 | ||
# fail 0` | ||
}; |
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
File renamed without changes.
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