@mands/nx-playwright
Advanced tools
Comparing version 0.3.7 to 0.3.8
{ | ||
"name": "@mands/nx-playwright", | ||
"version": "0.3.7", | ||
"version": "0.3.8", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "publishConfig": { |
@@ -7,3 +7,3 @@ "use strict"; | ||
const schema_json_1 = tslib_1.__importDefault(require("./schema.json")); | ||
function getFlags({ debug, headed, passWithNoTests, browser, testProject, reporter, timeout, grep, grepInvert, updateSnapshots, uiMode, }) { | ||
function getFlags({ debug, headed, passWithNoTests, browser, testProject, reporter, timeout, grep, grepInvert, updateSnapshots, ui, }) { | ||
const headedOption = headed === true ? '--headed' : ''; | ||
@@ -19,3 +19,3 @@ const passWithNoTestsOption = passWithNoTests === true ? '--pass-with-no-tests' : ''; | ||
const updateSnapshotsOption = updateSnapshots !== undefined && updateSnapshots ? '--update-snapshots' : ''; | ||
const uiModeOption = uiMode !== undefined && uiMode ? '--ui' : ''; | ||
const uiOption = ui !== undefined && ui ? '--ui' : ''; | ||
return [ | ||
@@ -32,3 +32,3 @@ headedOption, | ||
updateSnapshotsOption, | ||
uiModeOption, | ||
uiOption, | ||
]; | ||
@@ -35,0 +35,0 @@ } |
@@ -119,3 +119,3 @@ import { exec } from 'child_process'; | ||
{ | ||
uiMode: true, | ||
ui: true, | ||
e2eFolder: 'folder', | ||
@@ -122,0 +122,0 @@ }, |
@@ -21,3 +21,3 @@ import type { PackageRunner } from '../../types'; | ||
updateSnapshots?: boolean; | ||
uiMode?: boolean; | ||
ui?: boolean; | ||
} |
@@ -56,3 +56,3 @@ { | ||
}, | ||
"uiMode": { | ||
"ui": { | ||
"type": "boolean", | ||
@@ -59,0 +59,0 @@ "description": "whether to open Playwright UI mode" |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
51411