aboutsummaryrefslogblamecommitdiffstats
path: root/src/nodejs/tests/async_basis_test.js
blob: c083a1935c7f62fbc36e526be6ef61cca84c018f (plain) (tree)
1
2
                             
                                                                























                            
if (module == require.main) {
  return require('async_testing').run(__filename, 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();
  }
};