vitest/test/cli/custom.ts
Kevin Deng acc5152b96
perf: replace debug with obug (#9057)
Co-authored-by: Ari Perkkiö <ari.perkkio@gmail.com>
2025-11-24 10:13:36 +02:00

43 lines
929 B
TypeScript

import type { Environment } from 'vitest/environments'
import vm from 'node:vm'
import { createDebug } from 'obug'
// test that external packages (obug) are loaded correctly
const log = createDebug('test:env')
export default <Environment>{
name: 'custom',
viteEnvironment: 'ssr',
setupVM({ custom }) {
const context = vm.createContext({
testEnvironment: 'custom',
option: custom.option,
setTimeout,
clearTimeout,
})
return {
getVmContext() {
return context
},
teardown() {
delete context.testEnvironment
delete context.option
},
}
},
setup(global, { custom }) {
global.testEnvironment = 'custom'
global.option = custom.option
return {
teardown() {
delete global.testEnvironment
delete global.option
if (global.__exists) {
log('should not log')
}
},
}
},
}