askui
Version:
Reliable, automated end-to-end-testing that depends on what is shown on your screen instead of the technology you are running on
14 lines (11 loc) • 322 B
text/typescript
import type { Config } from '@jest/types';
const config: Config.InitialOptions = {
preset: 'ts-jest',
sandboxInjectedGlobals: [
'Math',
],
setupFilesAfterEnv: ['./helpers/askui-helper.ts'],
testEnvironment: 'allure-jest/node',
};
// eslint-disable-next-line import/no-default-export
export default config;