Skip to content

Commit e475fde

Browse files
committed
[html/razor/handlebars/xml] colorizer tests
1 parent f324e87 commit e475fde

8 files changed

Lines changed: 9470 additions & 0 deletions

File tree

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<html>
2+
<head>
3+
<meta charset="utf-8">
4+
<title>VSCode Tests</title>
5+
<link href="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.css" rel="stylesheet" />
6+
7+
<style type="text/css">
8+
body {
9+
color: purple;
10+
background-color: #d8da3d;
11+
}
12+
</style>
13+
</head>
14+
<body>
15+
<div id="mocha"></div>
16+
17+
<!--<script src="https://cdn.rawgit.com/jquery/jquery/2.1.4/dist/jquery.min.js"></script>
18+
<script src="https://cdn.rawgit.com/Automattic/expect.js/0.3.1/index.js"></script>-->
19+
<script src="/out/vs/loader.js"></script>
20+
<script src="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.js"></script>
21+
22+
<script>
23+
mocha.setup('tdd');
24+
25+
require.config({
26+
baseUrl: '/out',
27+
paths: {
28+
assert: '/test/assert.js'
29+
}
30+
});
31+
32+
require({{ modules }}, function () {
33+
mocha.run();
34+
});
35+
</script>
36+
<div class="js-stale-session-flash stale-session-flash flash flash-warn flash-banner hidden">
37+
<span class=octicon></span>
38+
<span class="signed-in-tab-flash">You signed in with another tab or window. <a href="">Reload</a> to refresh your session.</span>
39+
<span class="signed-out-tab-flash">You signed out in another tab or window. <a href="">Reload</a> to refresh your session.</span>
40+
</div>
41+
</body>
42+
</html>

0 commit comments

Comments
 (0)