mirror of
https://github.com/EddyVerbruggen/Toast-PhoneGap-Plugin.git
synced 2025-04-04 22:11:57 +08:00
Adding tests
This commit is contained in:
parent
57f606dacf
commit
b7bc165d73
19
test/tests.js
Normal file
19
test/tests.js
Normal file
@ -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() {
|
||||
//});
|
||||
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user