byreal-test 1.3.3 → 1.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli.js +3 -1
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -8,12 +8,14 @@ const { runSuites, listTests } = require('./src/runner');
|
|
|
8
8
|
const { printReport, saveReport } = require('./src/reporter');
|
|
9
9
|
const allSuites = require('./src/suites');
|
|
10
10
|
|
|
11
|
+
const { version } = require('./package.json');
|
|
12
|
+
|
|
11
13
|
const program = new Command();
|
|
12
14
|
|
|
13
15
|
program
|
|
14
16
|
.name('byreal-test')
|
|
15
17
|
.description('Byreal CLI test suite — validates byreal-cli commands and generates reports')
|
|
16
|
-
.version(
|
|
18
|
+
.version(version);
|
|
17
19
|
|
|
18
20
|
program
|
|
19
21
|
.command('run')
|