@autometa/jest-executor 0.5.0 → 0.5.1
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/.turbo/turbo-test.log +5 -5
- package/CHANGELOG.md +11 -0
- package/package.json +8 -8
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
|
|
2
|
-
> @autometa/jest-executor@0.
|
|
2
|
+
> @autometa/jest-executor@0.5.0 test /Users/ben.aherne/Documents/GitHub/autometa/packages/jest-executor
|
|
3
3
|
> vitest run --passWithNoTests
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
RUN v1.4.0 /Users/ben.aherne/Documents/GitHub/autometa/packages/jest-executor
|
|
7
7
|
|
|
8
|
-
✓ src/timeout-selector.spec.ts (2 tests)
|
|
9
|
-
✓ src/executor.spec.ts (15 tests)
|
|
8
|
+
✓ src/timeout-selector.spec.ts (2 tests) 2ms
|
|
9
|
+
✓ src/executor.spec.ts (15 tests) 13ms
|
|
10
10
|
|
|
11
11
|
Test Files 2 passed (2)
|
|
12
12
|
Tests 17 passed (17)
|
|
13
|
-
Start at
|
|
14
|
-
Duration
|
|
13
|
+
Start at 16:48:22
|
|
14
|
+
Duration 4.26s (transform 1.52s, setup 0ms, collect 4.88s, tests 15ms, environment 30ms, prepare 1.37s)
|
|
15
15
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @autometa/jest-executor
|
|
2
2
|
|
|
3
|
+
## 0.5.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- be770fc: fix: title interpolation for outlines and their steps
|
|
8
|
+
- Updated dependencies [be770fc]
|
|
9
|
+
- @autometa/gherkin@0.6.11
|
|
10
|
+
- @autometa/events@0.2.23
|
|
11
|
+
- @autometa/scopes@0.6.1
|
|
12
|
+
- @autometa/test-builder@0.3.1
|
|
13
|
+
|
|
3
14
|
## 0.5.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@autometa/jest-executor",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"tsup": "^7.2.0",
|
|
33
33
|
"typescript": "^4.9.5",
|
|
34
34
|
"vitest": "1.4.0",
|
|
35
|
-
"
|
|
36
|
-
"
|
|
35
|
+
"eslint-config-custom": "0.6.0",
|
|
36
|
+
"tsconfig": "0.7.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@jest/globals": "^29.5.0",
|
|
@@ -44,12 +44,12 @@
|
|
|
44
44
|
"@autometa/app": "^0.3.4",
|
|
45
45
|
"@autometa/config": "^0.1.23",
|
|
46
46
|
"@autometa/errors": "^0.2.2",
|
|
47
|
-
"@autometa/events": "^0.2.
|
|
48
|
-
"@autometa/gherkin": "^0.6.10",
|
|
49
|
-
"@autometa/scopes": "^0.6.0",
|
|
50
|
-
"@autometa/asserters": "^0.1.8",
|
|
47
|
+
"@autometa/events": "^0.2.23",
|
|
51
48
|
"@autometa/injection": "^0.1.3",
|
|
52
|
-
"@autometa/
|
|
49
|
+
"@autometa/scopes": "^0.6.1",
|
|
50
|
+
"@autometa/gherkin": "^0.6.11",
|
|
51
|
+
"@autometa/test-builder": "^0.3.1",
|
|
52
|
+
"@autometa/asserters": "^0.1.8",
|
|
53
53
|
"@autometa/types": "^0.4.1"
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|