Skip to content

Commit ae37b0e

Browse files
committedDec 18, 2023
feat(e2e): auto-detect jest runner
1 parent 9451393 commit ae37b0e

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed
 

‎examples/app-jest/test/browser.e2e.spec.ts

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { createPage, setup } from '@nuxt/test-utils/e2e'
44
await setup({
55
rootDir: fileURLToPath(new URL('../', import.meta.url)),
66
browser: true,
7-
runner: 'jest',
87
})
98

109
describe('browser', () => {

‎examples/app-jest/test/dev.e2e.spec.ts

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { $fetch, setup } from '@nuxt/test-utils/e2e'
44
await setup({
55
rootDir: fileURLToPath(new URL('../', import.meta.url)),
66
dev: true,
7-
runner: 'jest',
87
})
98

109
describe('server (dev)', () => {

‎examples/app-jest/test/server.e2e.spec.ts

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { $fetch, setup } from '@nuxt/test-utils/e2e'
33

44
await setup({
55
rootDir: fileURLToPath(new URL('../', import.meta.url)),
6-
runner: 'jest'
76
})
87

98
describe("app",()=>{

‎src/core/context.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { resolve } from 'node:path'
22
import { defu } from 'defu'
3-
import type { TestContext, TestOptions, TestRunner } from './types'
3+
import type { TestContext, TestOptions } from './types'
44

55
let currentContext: TestContext | undefined
66

@@ -15,12 +15,11 @@ export function createTestContext (options: Partial<TestOptions>): TestContext {
1515
server: true,
1616
build: (options.browser !== false) || (options.server !== false),
1717
nuxtConfig: {},
18-
// TODO: auto detect based on process.env
19-
runner: <TestRunner>'vitest',
18+
runner: process.env.VITEST === 'true' ? 'vitest' : 'jest',
2019
browserOptions: {
2120
type: 'chromium' as const
2221
}
23-
})
22+
} satisfies Partial<TestOptions>)
2423

2524
return setTestContext({
2625
options: _options as TestOptions

0 commit comments

Comments
 (0)
Please sign in to comment.