File size: 227 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
import type { Config } from '@jest/types';
import { baseJestConfig } from './jest.config.base';
const config: Config.InitialOptions = {
...baseJestConfig,
testEnvironment: 'node', // browser-like
}
export default config;
|