unit-testing-test-generate
Generates comprehensive unit tests across multiple languages, ensuring strong coverage and edge case validation for maintainable code.
Install this skill
Security score
The unit-testing-test-generate skill was audited on Feb 28, 2026 and we found 14 security issues across 1 threat category. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 165 | name: `${functionName} returns expected result with valid input`, |
Template literal with variable interpolation in command context
| 166 | execution: `const result = ${functionName}(${this.generateMockParams(params)})`, |
Template literal with variable interpolation in command context
| 170 | name: `${functionName} handles null input gracefully`, |
Template literal with variable interpolation in command context
| 171 | execution: `const result = ${functionName}(null)`, |
Template literal with variable interpolation in command context
| 175 | name: `${functionName} throws error for invalid input`, |
Template literal with variable interpolation in command context
| 176 | execution: `() => ${functionName}(undefined)`, |
Template literal with variable interpolation in command context
| 185 | let output = `describe('${name}', () => {\n`; |
Template literal with variable interpolation in command context
| 188 | output += ` it('${testCase.name}', () => {\n`; |
Template literal with variable interpolation in command context
| 190 | output += ` ${testCase.setup}\n`; |
Template literal with variable interpolation in command context
| 192 | output += ` const execution = ${testCase.execution};\n`; |
Template literal with variable interpolation in command context
| 194 | output += ` ${assertion};\n`; |
Template literal with variable interpolation in command context
| 204 | return params.map(p => `mock${p.charAt(0).toUpperCase() + p.slice(1)}`).join(', '); |
Template literal with variable interpolation in command context
| 213 | return ` |
Python subprocess execution
| 257 | result = subprocess.run( |