aboutsummaryrefslogtreecommitdiffstats
path: root/src/nodejs/tests/async_basis_test.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/nodejs/tests/async_basis_test.js')
-rw-r--r--src/nodejs/tests/async_basis_test.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/nodejs/tests/async_basis_test.js b/src/nodejs/tests/async_basis_test.js
new file mode 100644
index 0000000..47062e3
--- /dev/null
+++ b/src/nodejs/tests/async_basis_test.js
@@ -0,0 +1,26 @@
+if (module == require.main) {
+ return require('./node-async-testing/lib/async_testing').run(process.ARGV);
+}
+
+module.exports = {
+ 'test A': function(test) {
+ test.ok(true);
+ test.finish();
+ },
+
+ 'test B': function(test) {
+ test.ok(true);
+ test.finish();
+ },
+
+ 'test C': function(test) {
+ test.ok(true);
+ test.finish();
+ },
+
+ 'test D': function(test) {
+ test.ok(true);
+ test.finish();
+ }
+};
+