29 lines
866 B
HTML
29 lines
866 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>ZeroClipboard unit tests: shared/private.js</title>
|
|
<link rel="stylesheet" href="../../node_modules/qunitjs/qunit/qunit.css">
|
|
<script src="../../node_modules/qunitjs/qunit/qunit.js"></script>
|
|
<script>
|
|
// Polyfill in future functionality: https://github.com/jquery/qunit/issues/490
|
|
if (!QUnit.assert.expect) {
|
|
QUnit.assert.expect = QUnit.expect;
|
|
}
|
|
|
|
// Require `expect` calls
|
|
QUnit.config.requireExpects = true;
|
|
|
|
// Prevent against Firefox/Firebug failing the global pollution check
|
|
var getInterface = null;
|
|
</script>
|
|
<script src="../../src/js/shared/state.js"></script>
|
|
<script src="../../src/js/shared/private.js"></script>
|
|
<script src="private.tests.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture"></div>
|
|
</body>
|
|
</html>
|