-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.setup.ts
33 lines (26 loc) · 1.03 KB
/
jest.setup.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import ts from 'typescript';
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
declare global {
// eslint-disable-next-line @typescript-eslint/no-namespace
namespace jest {
// eslint-disable-next-line
interface Matchers<R> {
// Put custom matchers here
}
}
}
expect.extend({});
// Parse module kind
const tsModule = process.env.JEST_TS_MODULE_KIND?.toUpperCase();
if (!tsModule) throw new Error('Missing JEST_TS_MODULE_KIND configuration');
if (!Object.entries(ts.ModuleKind).some((k) => k[0] === tsModule))
throw new Error(`Could not find module kind ${tsModule}`);
process.env.JEST_TRANSFORMER_MODULE_KIND = tsModule;
// Parse script target
const tsScript = process.env.JEST_TS_SCRIPT_TARGET?.toUpperCase();
if (!tsScript) throw new Error('Missing JEST_TS_SCRIPT_TARGET configuration');
if (!Object.entries(ts.ScriptTarget).some((k) => k[0] === tsScript))
throw new Error(`Could not find module kind ${tsScript}`);
process.env.JEST_TRANSFORMER_SCRIPT_TARGET = tsScript;
export default undefined;