Skip to main content

e2e-testing

Provides comprehensive Playwright E2E testing patterns, including Page Object Model and CI/CD integration for stable test suites.

Install this skill

or
86/100

Security score

The e2e-testing skill was audited on Mar 17, 2026 and we found 10 security issues across 3 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 227

Template literal with variable interpolation in command context

SourceSKILL.md
227```yaml
low line 108

Access to .env file

SourceSKILL.md
108forbidOnly: !!process.env.CI,
low line 109

Access to .env file

SourceSKILL.md
109retries: process.env.CI ? 2 : 0,
low line 110

Access to .env file

SourceSKILL.md
110workers: process.env.CI ? 1 : undefined,
low line 117

Access to .env file

SourceSKILL.md
117baseURL: process.env.BASE_URL || 'http://localhost:3000',
low line 133

Access to .env file

SourceSKILL.md
133reuseExistingServer: !process.env.CI,
low line 150

Access to .env file

SourceSKILL.md
150test.skip(process.env.CI, 'Flaky in CI - Issue #123')
low line 307

Access to .env file

SourceSKILL.md
307test.skip(process.env.NODE_ENV === 'production', 'Skip on production')
low line 117

External URL reference

SourceSKILL.md
117baseURL: process.env.BASE_URL || 'http://localhost:3000',
low line 132

External URL reference

SourceSKILL.md
132url: 'http://localhost:3000',
Scanned on Mar 17, 2026
View Security Dashboard
Installation guide →