30 строки
706 B
HTML
30 строки
706 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/jquery/jquery/2.1.4/dist/jquery.min.js"></script>
|
|
<script src="https://cdn.rawgit.com/Automattic/expect.js/0.3.1/index.js"></script>-->
|
|
<script src="/out/vs/loader.js"></script>
|
|
<script src="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.js"></script>
|
|
|
|
<script>
|
|
mocha.setup('tdd');
|
|
|
|
require.config({
|
|
baseUrl: '/out',
|
|
paths: {
|
|
assert: '/test/assert.js'
|
|
}
|
|
});
|
|
|
|
require({{ modules }}, function () {
|
|
mocha.run();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |