From a5f78c6428089f756c45c7cb4101070af38e367a Mon Sep 17 00:00:00 2001 From: Mark Engel Date: Fri, 28 Jan 2011 18:21:04 +0100 Subject: switched to asnyc_testing testsuite 0.3.2 from npm did not work, using 0.4 from github --- src/nodejs/tests/async_basis_test.js | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/nodejs/tests/async_basis_test.js (limited to 'src/nodejs/tests/async_basis_test.js') 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(); + } +}; + -- cgit v1.2.3