aboutsummaryrefslogblamecommitdiffstats
path: root/src/nodejs/tests/async_basis_test.js
blob: 47062e358cd7810578d09e971f7caa3410574c9f (plain) (tree)

























                                                                             
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();
  }
};