@nx/playwright 19.8.2 → 19.8.4
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nx/playwright",
|
3
|
-
"version": "19.8.
|
3
|
+
"version": "19.8.4",
|
4
4
|
"type": "commonjs",
|
5
5
|
"homepage": "https://nx.dev",
|
6
6
|
"private": false,
|
@@ -35,11 +35,11 @@
|
|
35
35
|
},
|
36
36
|
"dependencies": {
|
37
37
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
38
|
-
"@nx/devkit": "19.8.
|
39
|
-
"@nx/eslint": "19.8.
|
40
|
-
"@nx/webpack": "19.8.
|
41
|
-
"@nx/vite": "19.8.
|
42
|
-
"@nx/js": "19.8.
|
38
|
+
"@nx/devkit": "19.8.4",
|
39
|
+
"@nx/eslint": "19.8.4",
|
40
|
+
"@nx/webpack": "19.8.4",
|
41
|
+
"@nx/vite": "19.8.4",
|
42
|
+
"@nx/js": "19.8.4",
|
43
43
|
"tslib": "^2.3.0",
|
44
44
|
"minimatch": "9.0.3"
|
45
45
|
},
|
@@ -1,8 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.playwrightExecutor = playwrightExecutor;
|
4
|
-
const child_process_1 = require("child_process");
|
5
4
|
const devkit_1 = require("@nx/devkit");
|
5
|
+
const child_process_1 = require("child_process");
|
6
6
|
async function playwrightExecutor(options, context) {
|
7
7
|
const projectRoot = context.projectGraph?.nodes?.[context?.projectName]?.data?.root;
|
8
8
|
if (!projectRoot) {
|
@@ -21,6 +21,10 @@
|
|
21
21
|
"type": "boolean",
|
22
22
|
"description": "Run tests with Playwright Inspector. Shortcut for 'PWDEBUG=1' environment variable and '--timeout=0',--max-failures=1 --headed --workers=1' options"
|
23
23
|
},
|
24
|
+
"lastFailed": {
|
25
|
+
"type": "boolean",
|
26
|
+
"description": "Run only the tests that failed in the last run"
|
27
|
+
},
|
24
28
|
"forbidOnly": {
|
25
29
|
"type": "boolean",
|
26
30
|
"description": "Fail if test.only is called"
|