UNPKG

ai-test-generator

Version:

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

14 lines (13 loc) 326 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.mochaTemplate = void 0; const mochaTemplate = (testCaseName, testCaseBody) => { return ` describe('${testCaseName}', () => { it('should', async () => { ${testCaseBody} }); }); `; }; exports.mochaTemplate = mochaTemplate;