forked from codeceptjs/CodeceptJS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcodecept.js
executable file
·106 lines (90 loc) · 4.28 KB
/
codecept.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#!/usr/bin/env node
'use strict';
var program = require('commander');
var path = require('path');
var Config = require('../lib/config');
var Codecept = require('../lib/codecept');
var print = require('../lib/output');
var fileExists = require('../lib/utils').fileExists;
var fs = require('fs');
program.command('init [path]')
.description('Creates dummy config in current dir or [path]')
.action(require('../lib/command/init'));
program.command('shell [path]')
.alias('sh')
.description('Interative shell')
.option('--verbose', 'output internal logging information')
.option('--profile [value]', 'configuration profile to be used')
.action(require('../lib/command/interactive'));
program.command('list [path]')
.alias('l')
.description('List all actions for I.')
.action(require('../lib/command/list'));
program.command('def [path]')
.description('List all actions for I.')
.action(require('../lib/command/definitions'));
program.command('generate:test [path]')
.alias('gt')
.description('Generates an empty test')
.action(require('../lib/command/generate').test);
program.command('generate:pageobject [path]')
.alias('gpo')
.description('Generates an empty page object')
.action(require('../lib/command/generate').pageObject);
program.command('generate:object [path]')
.alias('go')
.option('--type, -t [kind]', 'type of object to be created')
.description('Generates an empty support object (page/step/fragment)')
.action(require('../lib/command/generate').pageObject);
program.command('generate:helper [path]')
.alias('gh')
.description('Generates a new helper')
.action(require('../lib/command/generate').helper);
program.command('run [test]')
.description('Executes tests')
// codecept-only options
.option('--steps', 'show step-by-step execution')
.option('--debug', 'output additional information')
.option('--verbose', 'output internal logging information')
.option('-o, --override [value]', 'override current config options')
.option('--profile [value]', 'configuration profile to be used')
.option('-c, --config [file]', 'configuration file to be used')
// mocha options
.option('--colors', 'force enabling of colors')
.option('--no-colors', 'force disabling of colors')
.option('-G, --growl', 'enable growl notification support')
.option('-O, --reporter-options <k=v,k2=v2,...>', 'reporter-specific options')
.option('-R, --reporter <name>', 'specify the reporter to use')
.option('-S, --sort', "sort test files")
.option('-b, --bail', "bail after first test failure")
.option('-d, --debug', "enable node's debugger, synonym for node --debug")
.option('-g, --grep <pattern>', 'only run tests matching <pattern>')
.option('-f, --fgrep <string>', 'only run tests containing <string>')
.option('-i, --invert', 'inverts --grep and --fgrep matches')
.option('--full-trace', 'display the full stack trace')
.option('--compilers <ext>:<module>,...', 'use the given module(s) to compile files')
.option('--debug-brk', "enable node's debugger breaking on the first line")
.option('--inline-diffs', 'display actual/expected differences inline within each string')
.option('--no-exit', 'require a clean shutdown of the event loop: mocha will not call process.exit')
.option('--recursive', 'include sub directories')
.option('--trace', 'trace function calls')
.option('--child <string>', 'option for child processes')
.action(require('../lib/command/run'));
program.command('run-multiple [suites...]')
.description('Executes tests multiple')
.option('-c, --config [file]', 'configuration file to be used')
.option('--all', 'run all suites')
.option('-g, --grep <pattern>', 'only run tests matching <pattern>')
.option('-f, --fgrep <string>', 'only run tests containing <string>')
.option('--steps', 'show step-by-step execution')
.option('--verbose', 'output internal logging information')
.option('-o, --override [value]', 'override current config options')
.option('-O, --reporter-options <k=v,k2=v2,...>', 'reporter-specific options')
.option('-R, --reporter <name>', 'specify the reporter to use')
.option('--recursive', 'include sub directories')
.action(require('../lib/command/run-multiple'));
if (process.argv.length <= 2) {
console.log('CodeceptJS v' + Codecept.version());
program.outputHelp();
}
program.parse(process.argv);