@bigbinary/neeto-playwright-commons 3.0.2 → 3.0.3
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/index.cjs.js +5 -3
- package/index.cjs.js.map +1 -1
- package/index.js +5 -3
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -125812,10 +125812,8 @@ const compilePatterns = (patternStrings) => patternStrings.flatMap((pattern, ind
|
|
|
125812
125812
|
const parseSpecPatterns = () => {
|
|
125813
125813
|
let parsed;
|
|
125814
125814
|
const raw = process.env.PLAYWRIGHT_SPEC_PATTERNS_JSON?.trim();
|
|
125815
|
-
if (
|
|
125816
|
-
logInfo("PLAYWRIGHT_SPEC_PATTERNS_JSON missing; using default test discovery.");
|
|
125815
|
+
if (isNotPresent(raw))
|
|
125817
125816
|
return undefined;
|
|
125818
|
-
}
|
|
125819
125817
|
logInfo(`PLAYWRIGHT_SPEC_PATTERNS_JSON received: ${raw}`);
|
|
125820
125818
|
try {
|
|
125821
125819
|
parsed = JSON.parse(raw);
|
|
@@ -125951,6 +125949,8 @@ const definePlaywrightConfig = (overrides) => {
|
|
|
125951
125949
|
timeout: 5 * 60 * 1000,
|
|
125952
125950
|
cwd: "..",
|
|
125953
125951
|
env: { ...process.env, PORT: railsPort ?? "" },
|
|
125952
|
+
stdout: "ignore",
|
|
125953
|
+
stderr: "ignore",
|
|
125954
125954
|
},
|
|
125955
125955
|
{
|
|
125956
125956
|
command: "yarn dev --host",
|
|
@@ -125958,6 +125958,8 @@ const definePlaywrightConfig = (overrides) => {
|
|
|
125958
125958
|
reuseExistingServer: !IS_CI,
|
|
125959
125959
|
timeout: 2 * 60 * 1000,
|
|
125960
125960
|
cwd: "..",
|
|
125961
|
+
stdout: "ignore",
|
|
125962
|
+
stderr: "ignore",
|
|
125961
125963
|
},
|
|
125962
125964
|
...webServerOverrides,
|
|
125963
125965
|
],
|