diff --git a/test/tests.js b/test/tests.js new file mode 100644 index 0000000..3e8cf73 --- /dev/null +++ b/test/tests.js @@ -0,0 +1,19 @@ +exports.defineAutoTests = function() { + + define('awesome tests', function() { + it('do something sync', function() { + expect(1).toBe(1); + }); + + it('do something async', function(done) { + setTimeout(function() { + expect(1).toBe(1); + done(); + }, 100); + }); + }); + + //define('more awesome tests', function() { + //}); + +};