@travetto/test 4.0.3 → 4.0.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/test",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
4
4
  "description": "Declarative test framework",
5
5
  "keywords": [
6
6
  "unit-testing",
@@ -27,14 +27,14 @@
27
27
  "directory": "module/test"
28
28
  },
29
29
  "dependencies": {
30
- "@travetto/base": "^4.0.2",
31
- "@travetto/registry": "^4.0.3",
32
- "@travetto/terminal": "^4.0.2",
33
- "@travetto/worker": "^4.0.2",
34
- "@travetto/yaml": "^4.0.2"
30
+ "@travetto/base": "^4.0.3",
31
+ "@travetto/registry": "^4.0.4",
32
+ "@travetto/terminal": "^4.0.3",
33
+ "@travetto/worker": "^4.0.3",
34
+ "@travetto/yaml": "^4.0.3"
35
35
  },
36
36
  "peerDependencies": {
37
- "@travetto/cli": "^4.0.4",
37
+ "@travetto/cli": "^4.0.5",
38
38
  "@travetto/transformer": "^4.0.2"
39
39
  },
40
40
  "peerDependenciesMeta": {
@@ -13,7 +13,7 @@ export class RunnerUtil {
13
13
  * Add 50 ms to the shutdown to allow for buffers to output properly
14
14
  */
15
15
  static registerCleanup(scope: string): void {
16
- ShutdownManager.onGracefulShutdown(() => Util.nonBlockingTimeout(50), `test.${scope}.bufferOutput`);
16
+ ShutdownManager.onGracefulShutdown(() => Util.blockingTimeout(50), `test.${scope}.bufferOutput`);
17
17
  }
18
18
 
19
19
  /**
@@ -49,7 +49,7 @@ export class TestChildWorker extends ChildCommChannel<RunEvent> {
49
49
  // Let parent know the child is ready for handling commands
50
50
  this.send(Events.READY);
51
51
 
52
- await Util.nonBlockingTimeout(TimeUtil.timeToMs('10m'));
52
+ await Util.blockingTimeout(TimeUtil.timeToMs('10m'));
53
53
  }
54
54
 
55
55
  /**