forked from ajaxorg/ace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtests.html
More file actions
48 lines (40 loc) · 886 Bytes
/
tests.html
File metadata and controls
48 lines (40 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Ace Unit Tests</title>
<style type="text/css" media="screen">
#log .passed {
color: green;
}
#log .failed {
color: red;
}
#log pre.error {
color: black;
}
</style>
</head>
<body>
<div id="log"></div>
<script src="../../demo/kitchen-sink/require.js" ></script>
<script type="text/javascript">
require.config({
paths: {
ace: "../"
},
packages : [{
name: "asyncjs",
location: "./asyncjs",
main: "index"
}, {
name: "assert",
location: "./asyncjs",
main: "assert"
}]
});
define("amd-loader", {})
require(["ace/test/all_browser"])
</script>
</body>
</html>