@reporters/testwatch 1.0.0 → 1.1.0
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 +7 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/tests/index.test.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.0](https://github.com/MoLow/reporters/compare/testwatch-v1.0.0...testwatch-v1.1.0) (2023-06-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* fix @reporters/bail docs ([32fd66b](https://github.com/MoLow/reporters/commit/32fd66bdf788a2d6067bac72cee9fbc50b2d76e3))
|
|
9
|
+
|
|
3
10
|
## 1.0.0 (2023-06-08)
|
|
4
11
|
|
|
5
12
|
|
package/README.md
CHANGED
package/package.json
CHANGED
package/tests/index.test.js
CHANGED
|
@@ -53,7 +53,7 @@ async function spawnInteractive(commandSequence = 'q') {
|
|
|
53
53
|
if (char === 'a' || char === 'c' || char === '\r' || char === esc) {
|
|
54
54
|
// wait for tests to run before writing the next command
|
|
55
55
|
// eslint-disable-next-line no-await-in-loop
|
|
56
|
-
await setTimeout(
|
|
56
|
+
await setTimeout(1100);
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
}
|