-
-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-URL: #717 Credit: @jsumners Close: #717 Reviewed-by: @isaacs EDIT(@isaacs): clean up test somewhat to use t.testdir() instead of manually creating and removing files.
- Loading branch information
Showing
2 changed files
with
37 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
const { | ||
run, | ||
dir, | ||
t, | ||
} = require('./') | ||
|
||
const fs = require('fs') | ||
t.test('finds rc file with .yaml and .yml', t => { | ||
const files = [ | ||
'.taprc', | ||
'.taprc.yml', | ||
'.taprc.yaml', | ||
] | ||
|
||
t.plan(files.length) | ||
for (const file of files) { | ||
t.test(file, t => { | ||
const cwd = t.testdir({ | ||
[file]: 'check-coverage: false', | ||
}) | ||
run(['--dump-config'], { cwd }, (er, o, e) => { | ||
t.match(o, /check-coverage: false/) | ||
t.end() | ||
}) | ||
}) | ||
} | ||
}) |