mirror of
https://github.com/Microsoft/vscode
synced 2024-10-31 10:00:51 +00:00
22 lines
No EOL
352 B
HTML
22 lines
No EOL
352 B
HTML
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>VSCode Tests</title>
|
|
<link href="../../node_modules/mocha/mocha.css" rel="stylesheet" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="mocha"></div>
|
|
<script src="../../node_modules/mocha/mocha.js"></script>
|
|
|
|
<script>
|
|
mocha.setup({
|
|
ui: 'tdd',
|
|
timeout: 5000
|
|
});
|
|
require('./renderer');
|
|
</script>
|
|
</body>
|
|
|
|
</html> |