@toa.io/userland 0.20.0-dev.2 → 0.20.0-dev.20

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": "@toa.io/userland",
3
- "version": "0.20.0-dev.2",
3
+ "version": "0.20.0-dev.20",
4
4
  "description": "Toa development kit",
5
5
  "homepage": "https://toa.io",
6
6
  "author": {
@@ -24,15 +24,15 @@
24
24
  "main": "src/index.js",
25
25
  "types": "types/index.d.ts",
26
26
  "dependencies": {
27
- "@toa.io/boot": "0.20.0-dev.2",
28
- "@toa.io/core": "0.20.0-dev.2",
29
- "@toa.io/filesystem": "0.20.0-dev.2",
30
- "@toa.io/generic": "0.20.0-dev.2",
31
- "@toa.io/norm": "0.20.0-dev.2",
32
- "@toa.io/schemas": "0.20.0-dev.2",
33
- "@toa.io/storages.null": "0.20.0-dev.2",
34
- "@toa.io/yaml": "0.20.0-dev.2",
27
+ "@toa.io/boot": "0.20.0-dev.20",
28
+ "@toa.io/core": "0.20.0-dev.20",
29
+ "@toa.io/filesystem": "0.20.0-dev.20",
30
+ "@toa.io/generic": "0.20.0-dev.20",
31
+ "@toa.io/norm": "0.20.0-dev.20",
32
+ "@toa.io/schemas": "0.20.0-dev.20",
33
+ "@toa.io/storages.null": "0.20.0-dev.20",
34
+ "@toa.io/yaml": "0.20.0-dev.20",
35
35
  "tap": "16.3.4"
36
36
  },
37
- "gitHead": "3e767a32bf4705bacee7b2e8312ed0b0805a5260"
37
+ "gitHead": "52c962bc17b71f3e7890ec53870f8b93fda720a0"
38
38
  }
@@ -15,7 +15,7 @@ const context = async (path, options = {}) => {
15
15
  let ok = true
16
16
 
17
17
  if (options.integration !== true) ok = await test.components(paths, options)
18
- if (ok) ok = await replay(suite, paths, options.runner)
18
+ if (ok && options.autonomous !== true) ok = await replay(suite, paths, options.runner)
19
19
 
20
20
  return ok
21
21
  }
@@ -9,8 +9,9 @@ declare namespace toa.samples {
9
9
 
10
10
  type Options = {
11
11
  id?: string
12
- integration?: boolean
13
12
  component?: string
13
+ autonomous?: boolean
14
+ integration?: boolean
14
15
  operation?: string
15
16
  title?: string
16
17
  runner?: object