@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 CHANGED
@@ -125833,10 +125833,8 @@ const compilePatterns = (patternStrings) => patternStrings.flatMap((pattern, ind
125833
125833
  const parseSpecPatterns = () => {
125834
125834
  let parsed;
125835
125835
  const raw = process.env.PLAYWRIGHT_SPEC_PATTERNS_JSON?.trim();
125836
- if (!raw) {
125837
- logInfo("PLAYWRIGHT_SPEC_PATTERNS_JSON missing; using default test discovery.");
125836
+ if (neetoCist.isNotPresent(raw))
125838
125837
  return undefined;
125839
- }
125840
125838
  logInfo(`PLAYWRIGHT_SPEC_PATTERNS_JSON received: ${raw}`);
125841
125839
  try {
125842
125840
  parsed = JSON.parse(raw);
@@ -125972,6 +125970,8 @@ const definePlaywrightConfig = (overrides) => {
125972
125970
  timeout: 5 * 60 * 1000,
125973
125971
  cwd: "..",
125974
125972
  env: { ...process.env, PORT: railsPort ?? "" },
125973
+ stdout: "ignore",
125974
+ stderr: "ignore",
125975
125975
  },
125976
125976
  {
125977
125977
  command: "yarn dev --host",
@@ -125979,6 +125979,8 @@ const definePlaywrightConfig = (overrides) => {
125979
125979
  reuseExistingServer: !IS_CI,
125980
125980
  timeout: 2 * 60 * 1000,
125981
125981
  cwd: "..",
125982
+ stdout: "ignore",
125983
+ stderr: "ignore",
125982
125984
  },
125983
125985
  ...webServerOverrides,
125984
125986
  ],