-
Notifications
You must be signed in to change notification settings - Fork 39
/
acceptance.html
47 lines (41 loc) · 1.69 KB
/
acceptance.html
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
<!DOCTYPE html>
<html>
<head>
<title>[TEST] 'afterwriting</title>
<link rel="icon" type="image/x-icon" href="gfx/favicon.ico">
<link rel="stylesheet" href="css/reset.css"/>
<link rel="stylesheet" href="css/layout.css"/>
<link rel="stylesheet" href="css/widgets.css"/>
<link rel="stylesheet" href="css/jstree.css"/>
<link rel="stylesheet" href="css/codemirror.css"/>
<link rel="stylesheet" href="css/jquery-impromptu.min.css"/>
<link rel="stylesheet" href="js/libs/codemirror/addon/hint/show-hint.css"/>
<script type="text/javascript">
var ACCEPTANCE = true;
// XXX: if you turn the workers on, the acceptance test will fail because
// call executed by workers is asynchronous and the test does not take this
// into account
var JS_TREE_WORKERS_ENABLED = false;
</script>
<script type="text/javascript" src="js/libs/Blob.js"></script>
<script type="text/javascript" src="js/libs/sinon.js"></script>
<script type="text/javascript" src="node_modules/chai/chai.js"></script>
<script type="text/javascript" src="node_modules/mocha/mocha.js"></script>
<script type="text/javascript">
mocha.setup({
ui: 'bdd',
reporter: window.location.href.indexOf("reporter=json-stream") !== -1 ? 'json-stream' : 'spec'
});
</script>
<script src="js/libs/pdfjs/build/pdf.js"></script>
<script type="text/javascript">
PDFJS.disableWorker = true;
</script>
<script src="js/libs/require.js" defer></script>
<script src="js/main.js" defer></script>
<script src="js/bootstrap/acceptance.js" defer></script>
</head>
<body>
<p class="loader">Loading...</p>
</body>
</html>