test: update jest to v27

This commit is contained in:
Kengo TODA
2021-07-15 07:24:13 +08:00
committed by Kengo TODA
parent 87f015bd52
commit 38bcbb88d2
7 changed files with 1969 additions and 9618 deletions

View File

@@ -1,4 +1,5 @@
import {runCommand} from '../src/install' import {runCommand} from '../src/install'
import {expect, test} from '@jest/globals'
test('runCommand', async () => { test('runCommand', async () => {
const result = await runCommand('echo foo bar') const result = await runCommand('echo foo bar')

593
dist/index.js vendored

File diff suppressed because it is too large Load Diff

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -3,7 +3,6 @@ module.exports = {
moduleFileExtensions: ['js', 'ts'], moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node', testEnvironment: 'node',
testMatch: ['**/*.test.ts'], testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
transform: { transform: {
'^.+\\.ts$': 'ts-jest' '^.+\\.ts$': 'ts-jest'
}, },

7073
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -30,18 +30,16 @@
"@actions/tool-cache": "^1.7.0" "@actions/tool-cache": "^1.7.0"
}, },
"devDependencies": { "devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^16.0.0", "@types/node": "^16.0.0",
"@typescript-eslint/parser": "^4.28.3", "@typescript-eslint/parser": "^4.28.3",
"@vercel/ncc": "^0.28.6", "@vercel/ncc": "^0.28.6",
"eslint": "^7.30.0", "eslint": "^7.30.0",
"eslint-plugin-github": "^4.1.3", "eslint-plugin-github": "^4.1.3",
"eslint-plugin-jest": "^24.3.6", "eslint-plugin-jest": "^24.3.6",
"jest": "^24.9.0", "jest": "^27.0.6",
"jest-circus": "^27.0.6",
"js-yaml": "^4.1.0", "js-yaml": "^4.1.0",
"prettier": "2.3.2", "prettier": "2.3.2",
"ts-jest": "^24.3.0", "ts-jest": "^27.0.3",
"typescript": "^4.3.5" "typescript": "^4.3.5"
} }
} }