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 May 12, 2026 and we found 10 security issues across 3 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 226

Template literal with variable interpolation in command context

SourceSKILL.md
226```yaml
low line 107

Access to .env file

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

Access to .env file

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

Access to .env file

SourceSKILL.md
109workers: process.env.CI ? 1 : undefined,
low line 116

Access to .env file

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

Access to .env file

SourceSKILL.md
132reuseExistingServer: !process.env.CI,
low line 149

Access to .env file

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

Access to .env file

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

External URL reference

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

External URL reference

SourceSKILL.md
131url: 'http://localhost:3000',
Scanned on May 12, 2026
View Security Dashboard
Installation guide →