We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f45ee7 commit 64c0bb5Copy full SHA for 64c0bb5
cmds/test/buttercup.js
@@ -17,15 +17,15 @@
17
18
"use strict";
19
20
-exports.command = ['buttercup [files..]'];
+exports.command = ['buttercup [directories..]'];
21
exports.desc = 'Run buttercup tests';
22
exports.builder = yargs => yargs
23
.positional(
24
- '[files..]', {
25
- description: 'files you want buttercup to run on',
+ '[directories..]', {
+ description: 'directories containing buttercup tests, must be children of the current directory',
26
type: 'array',
27
});
28
29
exports.handler = async (argv) => {
30
- await UTIL.e_call(argv, 'test/buttercup', argv.files);
+ await UTIL.e_call(argv, 'test/buttercup', argv.directories);
31
};
0 commit comments