@atls/code-test 2.0.18 → 2.0.19
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/CHANGELOG.md +8 -2
- package/dist/tester.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
## [2.0.
|
|
3
|
+
## [2.0.19](https://github.com/atls/raijin/compare/@atls/code-test@2.0.18...@atls/code-test@2.0.19) (2025-04-10)
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
### Bug Fixes
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
* **
|
|
9
|
+
* **plugin-checks:** checks run ([#503](https://github.com/atls/raijin/issues/503)) ([7fc5115](https://github.com/atls/raijin/commit/7fc5115dd1b7122e4edb14996ece7edf7cee98c8))
|
|
10
|
+
|
|
11
|
+
|
|
10
12
|
|
|
13
|
+
## [2.0.18](https://github.com/atls/raijin/compare/@atls/code-test@2.0.17...@atls/code-test@2.0.18) (2025-03-31)
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
11
16
|
|
|
17
|
+
- **code-test:** unit test timeout ([#500](https://github.com/atls/raijin/issues/500)) ([665baaf](https://github.com/atls/raijin/commit/665baafbea37fba66fb6ceedb1c415d7ef13cbb6))
|
|
12
18
|
|
|
13
19
|
## [2.0.17](https://github.com/atls/raijin/compare/@atls/code-test@2.0.16...@atls/code-test@2.0.17) (2025-03-25)
|
|
14
20
|
|
package/dist/tester.js
CHANGED
|
@@ -62,11 +62,11 @@ export class Tester extends EventEmitter {
|
|
|
62
62
|
}
|
|
63
63
|
async integration(cwd, options) {
|
|
64
64
|
const testFiles = await this.collectTestFiles(cwd, 'integration', options?.files);
|
|
65
|
-
return this.run(testFiles,
|
|
65
|
+
return this.run(testFiles, 420_000, false, options?.watch, options?.testReporter);
|
|
66
66
|
}
|
|
67
67
|
async general(cwd, options) {
|
|
68
68
|
const testFiles = await this.collectTestFiles(cwd, undefined, options?.files);
|
|
69
|
-
return this.run(testFiles,
|
|
69
|
+
return this.run(testFiles, 420_000, true, options?.watch, options?.testReporter);
|
|
70
70
|
}
|
|
71
71
|
async collectTestFiles(cwd, type, patterns) {
|
|
72
72
|
let folderPattern = '*';
|