Files
faveo/public/filemanager/scripts/zeroclipboard/test/index.html
Bhanu Slathia c710c20b9e Update v1.0.6
2016-02-16 23:22:09 +05:30

29 lines
962 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>ZeroClipboard unit tests</title>
<link rel="stylesheet" href="../node_modules/qunitjs/qunit/qunit.css">
<link rel="stylesheet" href="../node_modules/qunit-composite/qunit-composite.css">
<script src="../node_modules/qunitjs/qunit/qunit.js"></script>
<script src="../node_modules/qunit-composite/qunit-composite.js"></script>
<script>
(function() {
var queryParams = "?noglobals=true";
QUnit.testSuites([
"shared/private.tests.js.html" + queryParams,
"core/private.tests.js.html" + queryParams,
"core/api.tests.js.html" + queryParams,
"client/private.tests.js.html" + queryParams,
"client/api.tests.js.html" + queryParams,
"built/ZeroClipboard.Core.tests.js.html" + queryParams,
"built/ZeroClipboard.tests.js.html" + queryParams
]);
})();
</script>
</head>
<body>
<div id="qunit"></div>
</body>
</html>