Files
vscode/test/electron/renderer.html
Johannes Rieken b6be51e985 add run option
2017-02-16 14:49:59 +01:00

19 lines
357 B
HTML

<html>
<head>
<meta charset="utf-8">
<title>VSCode Tests</title>
<link href="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.css" rel="stylesheet" />
</head>
<body>
<div id="mocha"></div>
<script src="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.js"></script>
<script>
mocha.setup('tdd');
require('./renderer');
</script>
</body>
</html>