UNPKG

ai-test-generator

Version:

AI-powered test generator for JavaScript and TypeScript codebases using Google Gemini

12 lines (11 loc) 335 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.jestTemplate = void 0; const jestTemplate = (testCaseName, testCaseBody) => ` describe('${testCaseName}', () => { test('${testCaseName} should work as expected', () => { ${testCaseBody} }); }); `; exports.jestTemplate = jestTemplate;