mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-22 18:55:56 +00:00
19 lines
357 B
HTML
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>
|