forked from webida/webida-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
unit-test.html
49 lines (36 loc) · 1.12 KB
/
unit-test.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
48
49
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Webida Test Runner</title>
<link rel="stylesheet" href="bower_components/qunit/qunit/qunit.css">
<link rel="stylesheet" href="bower_components/qunit-composite/qunit-composite.css">
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="bower_components/qunit/qunit/qunit.js"></script>
<script src="bower_components/qunit-composite/qunit-composite.js"></script>
<script>
// 추가 부분 시작 (Composite 문법)
/*
QUnit.testSuites("dashboard test ", [
"apps/dashboard/dashboard_test.html"
]);
QUnit.testSuites("deploy test ", [
"apps/deploy/deploy_test.html"
]);
QUnit.testSuites("desktop test ", [
"apps/deploy/desktop_test.html"
]);
QUnit.testSuites("site test ", [
"apps/deploy/site_test.html"
]);
*/
QUnit.testSuites("ide test ", [
"apps/ide/src/unit-test.html"
]);
// 추가 부분 끝 (Composite 문법)
</script>
</body>
</html>