9 lines
214 B
JavaScript
9 lines
214 B
JavaScript
const {sleep} = require('./_30s.js');
|
|
|
|
test('sleep is a Function', () => {
|
|
expect(sleep).toBeInstanceOf(Function);
|
|
});
|
|
test('Works as expected', () => {
|
|
return expect(sleep(1000)).resolves.toBe(undefined);
|
|
});
|