@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 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
@@ -3,7 +3,7 @@
3
3
  # Interactive Test Runner
4
4
  An interactive REPL for `node:test` watch mode.
5
5
 
6
- ![cli](assets/cli.gif)
6
+ ![cli](https://raw.githubusercontent.com/MoLow/reporters/77f69c450ab0cb204fa8b81caf12516df03cdc13/packages/testwatch/assets/cli.gif)
7
7
 
8
8
  ## Installation
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reporters/testwatch",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "An interactive repl for `node:test`",
5
5
  "keywords": [
6
6
  "node:test",
@@ -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(1200);
56
+ await setTimeout(1100);
57
57
  }
58
58
  }
59
59
  }