@nrwl/detox 13.10.0-beta.1 → 13.10.0-beta.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": "@nrwl/detox",
3
- "version": "13.10.0-beta.1",
3
+ "version": "13.10.0-beta.4",
4
4
  "description": "Detox Plugin for Nx",
5
5
  "keywords": [
6
6
  "Monorepo",
@@ -24,11 +24,11 @@
24
24
  "main": "index.js",
25
25
  "types": "index.d.ts",
26
26
  "dependencies": {
27
- "@nrwl/devkit": "13.10.0-beta.1",
28
- "@nrwl/jest": "13.10.0-beta.1",
29
- "@nrwl/linter": "13.10.0-beta.1",
30
- "@nrwl/react": "13.10.0-beta.1",
31
- "@nrwl/workspace": "13.10.0-beta.1",
27
+ "@nrwl/devkit": "13.10.0-beta.4",
28
+ "@nrwl/jest": "13.10.0-beta.4",
29
+ "@nrwl/linter": "13.10.0-beta.4",
30
+ "@nrwl/react": "13.10.0-beta.4",
31
+ "@nrwl/workspace": "13.10.0-beta.4",
32
32
  "chalk": "^4.1.0"
33
33
  },
34
34
  "peerDependencies": {
package/project.json CHANGED
@@ -59,7 +59,11 @@
59
59
  "ignore": ["**/tsconfig*.json"],
60
60
  "output": "/"
61
61
  },
62
- { "input": "", "glob": "LICENSE", "output": "/" }
62
+ {
63
+ "input": "",
64
+ "glob": "LICENSE",
65
+ "output": "/"
66
+ }
63
67
  ]
64
68
  },
65
69
  "outputs": ["{options.outputPath}"]
@@ -7,7 +7,13 @@
7
7
  "detoxConfiguration": {
8
8
  "type": "string",
9
9
  "description": "Select a device configuration from your defined configurations, if not supplied, and there's only one configuration, detox will default to it",
10
- "alias": "C"
10
+ "alias": "C",
11
+ "examples": [
12
+ "ios.sim.debug",
13
+ "ios.sim.release",
14
+ "android.emu.debug",
15
+ "android.emu.release"
16
+ ]
11
17
  },
12
18
  "buildTarget": {
13
19
  "type": "string",
@@ -30,11 +36,12 @@
30
36
  },
31
37
  "loglevel": {
32
38
  "type": "string",
39
+ "enum": ["fatal", "error", "warn", "info", "verbose", "trace"],
33
40
  "description": "Log level: fatal, error, warn, info, verbose, trace",
34
41
  "alias": "l"
35
42
  },
36
43
  "debugSynchronization": {
37
- "type": "string",
44
+ "type": "boolean",
38
45
  "description": "Customize how long an action/expectation can take to complete before Detox starts querying the app why it is busy. By default, the app status will be printed if the action takes more than 10s to complete.",
39
46
  "alias": "d"
40
47
  },
@@ -45,26 +52,32 @@
45
52
  },
46
53
  "recordLogs": {
47
54
  "type": "string",
55
+ "enum": ["failing", "all", "none"],
48
56
  "description": "Save logs during each test to artifacts directory. Pass \"failing\" to save logs of failing tests only."
49
57
  },
50
58
  "takeScreenshots": {
51
59
  "type": "string",
60
+ "enum": ["manual", "failing", "all", "none"],
52
61
  "description": "Save screenshots before and after each test to artifacts directory. Pass \"failing\" to save screenshots of failing tests only. "
53
62
  },
54
63
  "recordVideos": {
55
64
  "type": "string",
65
+ "enum": ["failing", "all", "none"],
56
66
  "description": "Save screen recordings of each test to artifacts directory. Pass \"failing\" to save recordings of failing tests only."
57
67
  },
58
68
  "recordPerformance": {
59
69
  "type": "string",
70
+ "enum": ["all", "none"],
60
71
  "description": "[iOS Only] Save Detox Instruments performance recordings of each test to artifacts directory."
61
72
  },
62
73
  "recordTimeline": {
63
74
  "type": "string",
75
+ "enum": ["all", "none"],
64
76
  "description": "[Jest Only] Record tests and events timeline, for visual display on the chrome://tracing tool."
65
77
  },
66
78
  "captureViewHierarchy": {
67
79
  "type": "string",
80
+ "enum": ["enabled", "disabled"],
68
81
  "description": "[iOS Only] Capture *.uihierarchy snapshots on view action errors and device.captureViewHierarchy() calls."
69
82
  },
70
83
  "retries": {
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.testingLibraryJestDom = exports.detoxVersion = exports.nxVersion = void 0;
4
- exports.nxVersion = '13.10.0-beta.1';
4
+ exports.nxVersion = '13.10.0-beta.4';
5
5
  exports.detoxVersion = '19.5.7';
6
6
  exports.testingLibraryJestDom = '5.16.2';
7
7
  //# sourceMappingURL=versions.js.map