mirror of
https://github.com/actions/typescript-action.git
synced 2025-04-05 14:59:47 +00:00
Merge pull request #39 from Yamboy1/patch-1
This commit is contained in:
@ -5,7 +5,7 @@ import * as path from 'path'
|
||||
|
||||
test('throws invalid number', async() => {
|
||||
const input = parseInt('foo', 10);
|
||||
await expect(wait(input)).rejects.toThrow('milleseconds not a number');
|
||||
await expect(wait(input)).rejects.toThrow('milliseconds not a number');
|
||||
});
|
||||
|
||||
test('wait 500 ms', async() => {
|
||||
@ -24,4 +24,4 @@ test('test runs', () => {
|
||||
env: process.env
|
||||
};
|
||||
console.log(cp.execSync(`node ${ip}`, options).toString());
|
||||
});
|
||||
});
|
||||
|
@ -1,10 +1,10 @@
|
||||
export function wait(milliseconds: number) {
|
||||
return new Promise((resolve) => {
|
||||
if (isNaN(milliseconds)) {
|
||||
throw new Error('milleseconds not a number');
|
||||
throw new Error('milliseconds not a number');
|
||||
}
|
||||
|
||||
setTimeout(() => resolve("done!"), milliseconds)
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user