Browse Source

Test domLoaded returns a Promise

transpile
Luke Childs 8 years ago
parent
commit
d232a4d61f
  1. 4
      test/types.js

4
test/types.js

@ -4,3 +4,7 @@ import domLoaded from '../';
test('domLoaded is a function', t => {
t.is(typeof domLoaded, 'function');
});
test('domLoaded returns a Promise', t => {
t.true(domLoaded() instanceof Promise);
});

Loading…
Cancel
Save