mirror of
https://github.com/actions/typescript-action.git
synced 2025-04-06 07:19:51 +00:00
Reconfigure tsconfig and eslint
This commit is contained in:
@ -1,7 +1,4 @@
|
||||
import { wait } from '../src/wait'
|
||||
import * as process from 'process'
|
||||
import * as cp from 'child_process'
|
||||
import * as path from 'path'
|
||||
import { expect, test } from '@jest/globals'
|
||||
|
||||
test('throws invalid number', async () => {
|
||||
@ -13,16 +10,6 @@ test('wait 500 ms', async () => {
|
||||
const start = new Date()
|
||||
await wait(500)
|
||||
const end = new Date()
|
||||
var delta = Math.abs(end.getTime() - start.getTime())
|
||||
const delta = Math.abs(end.getTime() - start.getTime())
|
||||
expect(delta).toBeGreaterThan(450)
|
||||
})
|
||||
|
||||
test('test runs', () => {
|
||||
process.env['INPUT_MILLISECONDS'] = '500'
|
||||
const np = process.execPath
|
||||
const ip = path.join(__dirname, '..', 'dist', 'index.js')
|
||||
const options: cp.ExecFileSyncOptions = {
|
||||
env: process.env
|
||||
}
|
||||
console.log(cp.execFileSync(np, [ip], options).toString())
|
||||
})
|
||||
|
Reference in New Issue
Block a user