@travetto/test 2.2.2 → 2.2.3
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/bin/cli-test.ts +2 -2
- package/package.json +8 -8
package/bin/cli-test.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as os from 'os';
|
|
|
2
2
|
import { readFileSync } from 'fs';
|
|
3
3
|
|
|
4
4
|
import { FsUtil, PathUtil, ScanFs } from '@travetto/boot';
|
|
5
|
-
import {
|
|
5
|
+
import { CliCommand, OptionConfig } from '@travetto/cli/src/command';
|
|
6
6
|
import { EnvInit } from '@travetto/base/bin/init';
|
|
7
7
|
|
|
8
8
|
import type { RunState } from '../src/execute/types';
|
|
@@ -19,7 +19,7 @@ type Options = {
|
|
|
19
19
|
/**
|
|
20
20
|
* Launch test framework and execute tests
|
|
21
21
|
*/
|
|
22
|
-
export class
|
|
22
|
+
export class TestCommand extends CliCommand<Options> {
|
|
23
23
|
name = 'test';
|
|
24
24
|
_types: string[];
|
|
25
25
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@travetto/test",
|
|
3
3
|
"displayName": "Testing",
|
|
4
|
-
"version": "2.2.
|
|
4
|
+
"version": "2.2.3",
|
|
5
5
|
"description": "Declarative test framework",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"unit-testing",
|
|
@@ -29,15 +29,15 @@
|
|
|
29
29
|
"directory": "module/test"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@travetto/base": "^2.2.
|
|
33
|
-
"@travetto/transformer": "^2.2.
|
|
34
|
-
"@travetto/registry": "^2.2.
|
|
35
|
-
"@travetto/watch": "^2.2.
|
|
36
|
-
"@travetto/worker": "^2.2.
|
|
37
|
-
"@travetto/yaml": "^2.2.
|
|
32
|
+
"@travetto/base": "^2.2.3",
|
|
33
|
+
"@travetto/transformer": "^2.2.3",
|
|
34
|
+
"@travetto/registry": "^2.2.3",
|
|
35
|
+
"@travetto/watch": "^2.2.3",
|
|
36
|
+
"@travetto/worker": "^2.2.3",
|
|
37
|
+
"@travetto/yaml": "^2.2.3"
|
|
38
38
|
},
|
|
39
39
|
"optionalPeerDependencies": {
|
|
40
|
-
"@travetto/cli": "^2.2.
|
|
40
|
+
"@travetto/cli": "^2.2.3"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|