UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

21 lines (17 loc) 298 B
export default ( jsfilePath: string, htmlFilePath: string, cssfilePath: string ) => ` <!DOCTYPE html> <html lang="en"> <head> <script type="module" src="${jsfilePath}"></script> <link rel="stylesheet" href="${cssfilePath}"> </head> <body> <div id="root"> </div> </body> </html> `;