mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-11-22 02:04:51 +00:00
Restored async.js module
Got lost in a spate of Git confusion on my part
This commit is contained in:
1577
node_modules/async/test/test-async.js
generated
vendored
Normal file
1577
node_modules/async/test/test-async.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
24
node_modules/async/test/test.html
generated
vendored
Normal file
24
node_modules/async/test/test.html
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Async.js Test Suite</title>
|
||||
<!--
|
||||
async must be included after nodeunit because nodeunit already uses
|
||||
the async lib internally and will overwrite the version we want to test
|
||||
-->
|
||||
<script src="../deps/nodeunit.js"></script>
|
||||
<script src="../lib/async.js"></script>
|
||||
<link rel="stylesheet" href="../deps/nodeunit.css" type="text/css" media="screen" />
|
||||
<script>
|
||||
var _async = this.async;
|
||||
this.require = function () { return _async; };
|
||||
this.exports = {};
|
||||
</script>
|
||||
<script src="test-async.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="nodeunit-header">Async.js Test Suite</h1>
|
||||
<script>
|
||||
nodeunit.run({'test-async': exports});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user