Remove client-side isLoggedIn value
[ProtonMail-WebClient.git] / packages / mail / jest.config.ts
blobdb488db8d5b3ad648099a0aaf4bb6012d189466b
1 import type { JestConfigWithTsJest } from 'ts-jest';
3 const jestConfig: JestConfigWithTsJest = {
4     // Default is 5000 (5seconds)
5     testTimeout: 10000,
6     preset: 'ts-jest',
7     transform: {
8         '^.+\\.tsx?$': [
9             'ts-jest',
10             {
11                 babelConfig: true,
12             },
13         ],
14     },
15     setupFilesAfterEnv: ['./jest.setup.ts'],
16     testEnvironment: 'jsdom',
17     moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
20 export default jestConfig;