@bugzy-ai/bugzy 1.12.0 → 1.12.1

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.
@@ -6967,24 +6967,22 @@ Run automated Playwright tests and capture results.
6967
6967
 
6968
6968
  **Build Playwright Command** based on selector:
6969
6969
 
6970
+ The playwright.config.ts automatically loads environment variables from .env.testdata and .env files.
6971
+ Use npm scripts to run tests - no manual env export needed.
6972
+
6970
6973
  **For file pattern or specific file**:
6971
6974
  \`\`\`bash
6972
- npx playwright test [selector]
6975
+ npm test -- [selector]
6973
6976
  \`\`\`
6974
6977
 
6975
6978
  **For tag**:
6976
6979
  \`\`\`bash
6977
- npx playwright test --grep "[tag]"
6980
+ npm test -- --grep "[tag]"
6978
6981
  \`\`\`
6979
6982
 
6980
6983
  **For all tests**:
6981
6984
  \`\`\`bash
6982
- npx playwright test
6983
- \`\`\`
6984
-
6985
- **Execute Tests via Bash:**
6986
- \`\`\`bash
6987
- npx playwright test [selector]
6985
+ npm test
6988
6986
  \`\`\`
6989
6987
 
6990
6988
  Wait for execution to complete. This may take several minutes depending on test count.