testeranto
Version:
the AI powered BDD test framework for typescript projects
19 lines (15 loc) • 346 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = (jsfilePath, htmlFilePath, cssfilePath) => `
<html lang="en">
<head>
<script type="module" src="${jsfilePath}"></script>
<link rel="stylesheet" href="${cssfilePath}">
</head>
<body>
<div id="root">
</div>
</body>
</html>
`;