@nrwl/detox 13.3.0-beta.4 → 13.3.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nrwl/detox",
|
|
3
|
-
"version": "13.3.0
|
|
3
|
+
"version": "13.3.0",
|
|
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.3.0
|
|
28
|
-
"@nrwl/jest": "13.3.0
|
|
29
|
-
"@nrwl/linter": "13.3.0
|
|
30
|
-
"@nrwl/react": "13.3.0
|
|
31
|
-
"@nrwl/workspace": "13.3.0
|
|
27
|
+
"@nrwl/devkit": "13.3.0",
|
|
28
|
+
"@nrwl/jest": "13.3.0",
|
|
29
|
+
"@nrwl/linter": "13.3.0",
|
|
30
|
+
"@nrwl/react": "13.3.0",
|
|
31
|
+
"@nrwl/workspace": "13.3.0",
|
|
32
32
|
"chalk": "^4.1.0"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
@@ -6,11 +6,6 @@ describe('<%= appClassName %>', () => {
|
|
|
6
6
|
});
|
|
7
7
|
|
|
8
8
|
it('should display welcome message', async () => {
|
|
9
|
-
await expect(element(by.id('heading'))).toHaveText('Welcome
|
|
10
|
-
});
|
|
11
|
-
|
|
12
|
-
it('should open nx link', async () => {
|
|
13
|
-
await expect(element(by.id('nx-link'))).toBeVisible();
|
|
14
|
-
element(by.id('nx-link')).tap();
|
|
9
|
+
await expect(element(by.id('heading'))).toHaveText('Welcome <%= appClassName %> 👋');
|
|
15
10
|
});
|
|
16
11
|
});
|
package/src/utils/versions.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.testingLibraryJestDom = exports.typesDetoxVersion = exports.detoxVersion = exports.nxVersion = void 0;
|
|
4
|
-
exports.nxVersion = '13.3.0
|
|
4
|
+
exports.nxVersion = '13.3.0';
|
|
5
5
|
exports.detoxVersion = '19.0.0';
|
|
6
6
|
exports.typesDetoxVersion = '17.14.3';
|
|
7
7
|
exports.testingLibraryJestDom = '5.15.0';
|