You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
946 B
HTML
28 lines
946 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>All osc.js Tests</title>
|
|
|
|
<link rel="stylesheet" href="../node_modules/infusion/tests/lib/qunit/css/qunit.css" type="text/css" media="screen">
|
|
<link rel="stylesheet" href="../node_modules/infusion/tests/lib/qunit/addons/composite/qunit-composite.css">
|
|
<script src="../node_modules/infusion/tests/lib/qunit/js/qunit.js"></script>
|
|
<script src="/testem.js"></script>
|
|
<script src="../node_modules/infusion/tests/lib/qunit/addons/composite/qunit-composite.js"></script>
|
|
<!-- find . -name "*-tests.html" | awk '{print "\""$1"\","}' -->
|
|
<script>
|
|
QUnit.testSuites("osc.js Tests", [
|
|
"osc-tests.html",
|
|
"transport-tests.html",
|
|
"osc-module-tests.html",
|
|
"osc-web-tests.html"
|
|
]);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture">
|
|
</div>
|
|
</body>
|
|
</html>
|