Toast-PhoneGap-Plugin/test/tests.js

20 lines
361 B
JavaScript
Raw Normal View History

2014-07-12 05:36:12 +08:00
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() {
//});
};