vscode/test/index.html

29 lines
582 B
HTML
Raw Normal View History

2015-11-13 14:39:38 +01:00
<html>
<head>
2015-11-19 12:56:08 +01:00
<meta charset="utf-8">
<title>VSCode Tests</title>
<link href="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.css" rel="stylesheet" />
2015-11-13 14:39:38 +01:00
</head>
<body>
2015-11-19 12:56:08 +01:00
<div id="mocha"></div>
2015-11-13 14:39:38 +01:00
2015-11-19 12:56:08 +01:00
<script src="/out/vs/loader.js"></script>
<script src="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.js"></script>
2015-11-13 14:39:38 +01:00
<script>
mocha.setup('tdd');
require.config({
baseUrl: '/out',
paths: {
2017-06-26 15:16:22 +02:00
assert: '/test/assert.js',
sinon: '/node_modules/sinon/pkg/sinon-1.17.7.js'
2015-11-13 14:39:38 +01:00
}
});
require({{ modules }}, function () {
mocha.run();
});
</script>
</body>
</html>