gpii-universal
Version:
Cross platform, core components of the GPII personalization infrastructure.
38 lines (35 loc) • 2.07 kB
HTML
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>GPII Universal framework complete tests runner</title>
<link rel="stylesheet" href="../../../node_modules/infusion/tests/lib/qunit/css/qunit.css" />
<script src="../../../node_modules/infusion/tests/lib/qunit/js/qunit.js"></script>
<link rel="stylesheet" href="../../../node_modules/infusion/tests/lib/qunit/addons/composite/qunit-composite.css">
<script src="/testem.js"></script>
<script src="../../../node_modules/infusion/tests/lib/qunit/addons/composite/qunit-composite.js"></script>
<script>
// We use one path convention for Testem, another when Testem isn't available, i.e. when the tests are hosted in a web server.
var rawTestSuitePaths = [
"/gpii/node_modules/gpii-user-errors/test/html/UserErrorsTest.html",
"/gpii/node_modules/journal/test/html/JournalIdParserTests.html",
"/gpii/node_modules/lifecycleManager/test/html/LifecycleManagerResolverTest.html",
"/gpii/node_modules/lifecycleManager/test/html/LifecycleManagerUtilsTest.html",
"/gpii/node_modules/lifecycleManager/test/html/LifecycleManagerTest.html",
"/gpii/node_modules/matchMakerFramework/test/html/MatchMakerUtilitiesTest.html",
"/gpii/node_modules/ontologyHandler/test/html/OntologyHandlerUtilitiesTest.html",
"/gpii/node_modules/processReporter/test/web/html/ProcessesBridgeTest.html",
"/gpii/node_modules/processReporter/test/web/html/ProcessReporterTest.html",
"/gpii/node_modules/settingsHandlers/test/web/html/LaunchHandlerTest.html",
"/gpii/node_modules/settingsHandlers/test/web/html/SettingsHandlerUtilitiesTest.html"
];
var testSuitePaths = typeof Testem !== "undefined" ? rawTestSuitePaths : rawTestSuitePaths.map(function (entry) { return "../../.." + entry; });
QUnit.testSuites(testSuitePaths);
</script>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture">
</div>
</body>
</html>