Skip to main content

testing-strategy

Guides users in implementing comprehensive testing strategies using modern frameworks like Vitest, Jest, and Playwright.

Install this skill

or
68/100

Security score

The testing-strategy skill was audited on Feb 28, 2026 and we found 12 security issues across 3 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 425

Template literal with variable interpolation in command context

SourceSKILL.md
425authorization: `Bearer ${testUser.token}`,
medium line 450

Template literal with variable interpolation in command context

SourceSKILL.md
450headers: { authorization: `Bearer ${testUser.token}` },
medium line 492

Template literal with variable interpolation in command context

SourceSKILL.md
492email: `test-${Date.now()}@example.com`,
medium line 713

Template literal with variable interpolation in command context

SourceSKILL.md
713hashPassword: vi.fn((password: string) => `hashed_${password}`),
medium line 715

Template literal with variable interpolation in command context

SourceSKILL.md
715return hash === `hashed_${password}`;
low line 531

Access to .env file

SourceSKILL.md
531forbidOnly: !!process.env.CI,
low line 532

Access to .env file

SourceSKILL.md
532retries: process.env.CI ? 2 : 0,
low line 533

Access to .env file

SourceSKILL.md
533workers: process.env.CI ? 1 : undefined,
low line 557

Access to .env file

SourceSKILL.md
557reuseExistingServer: !process.env.CI,
low line 872

Access to .env file

SourceSKILL.md
872workers: process.env.CI ? 1 : 4, // Limit parallelism in CI
low line 536

External URL reference

SourceSKILL.md
536baseURL: 'http://localhost:3000',
low line 556

External URL reference

SourceSKILL.md
556url: 'http://localhost:3000',
Scanned on Feb 28, 2026
View Security Dashboard