-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathProcessesBridgeTest.html
More file actions
40 lines (34 loc) · 2.15 KB
/
ProcessesBridgeTest.html
File metadata and controls
40 lines (34 loc) · 2.15 KB
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>GPII Processes Bridge Tests</title>
<link rel="stylesheet" media="screen" href="../../../../../../node_modules/infusion/tests/lib/qunit/css/qunit.css" />
<script src="../../../../../../node_modules/infusion/src/lib/jquery/core/js/jquery.js"></script>
<script src="../../../../../../node_modules/infusion/tests/lib/qunit/js/qunit.js"></script>
<script src="../../../../../../node_modules/infusion/src/framework/core/js/Fluid.js"></script>
<script src="../../../../../../node_modules/infusion/src/framework/core/js/FluidPromises.js"></script>
<script src="../../../../../../node_modules/infusion/src/framework/core/js/FluidDebugging.js"></script>
<script src="../../../../../../node_modules/infusion/tests/test-core/jqUnit/js/jqUnit.js"></script>
<script src="../../../../../../node_modules/infusion/src/framework/core/js/DataBinding.js"></script>
<script src="../../../../../../node_modules/infusion/src/framework/core/js/ModelTransformation.js"></script>
<script src="../../../../../../node_modules/infusion/src/framework/core/js/ModelTransformationTransforms.js"></script>
<script src="../../../../../../node_modules/infusion/src/framework/core/js/FluidIoC.js"></script>
<script src="../../../../../../node_modules/infusion/src/framework/enhancement/js/ContextAwareness.js"></script>
<script src="../../../src/processesBridge.js"></script>
<script src="../js/ProcessesBridgeTests.js"></script>
<!-- This is required not for the tests themselves, but for the coverage client -->
<script src="/testem.js"></script>
<script src="/coverage/client/coverageSender.js"></script>
</head>
<body id="body">
<h1 id="qunit-header">GPII Processes Bridge Tests</h1>
<h2 id="qunit-banner"></h2>
<div id="qunit-testrunner-toolbar"></div>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests"></ol>
<script>
gpii.tests.processes.runTests();
</script>
</body>
</html>