You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exports[`ts-jest logging with unsupported version test with TS_JEST_DISABLE_VER_CHECKER is not set in process.env should pass using template "with-unsupported-version" 1`] = `
Copy file name to clipboardexpand all lines: src/utils/messages.ts
-2
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,6 @@ export const enum Errors {
16
16
GotUnknownFileTypeWithoutBabel='Got a unknown file type to compile (file: {{path}}). To fix this, in your Jest config change the `transform` key which value is `ts-jest` so that it does not match this kind of files anymore.',
17
17
GotUnknownFileTypeWithBabel='Got a unknown file type to compile (file: {{path}}). To fix this, in your Jest config change the `transform` key which value is `ts-jest` so that it does not match this kind of files anymore. If you still want Babel to process it, add another entry to the `transform` option with value `babel-jest` which key matches this type of files.',
18
18
ConfigNoModuleInterop='If you have issues related to imports, you should consider setting `esModuleInterop` to `true` in your TypeScript configuration file (usually `tsconfig.json`). See https://blogs.msdn.microsoft.com/typescript/2018/01/31/announcing-typescript-2-7/#easier-ecmascript-module-interoperability for more information.',
19
-
UnableToFindProjectRoot='Unable to find the root of the project where ts-jest has been installed.',
20
19
MismatchNodeTargetMapping='There is a mismatch between your NodeJs version {{nodeJsVer}} and your TypeScript target {{compilationTarget}}. This might lead to some unexpected errors when running tests with `ts-jest`. To fix this, you can check https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping',
ConfigOptionUseBabelRcNote='See `babel-jest` related issue: https://github.com/facebook/jest/issues/3845',
39
38
HelperMovedToUtils="The `{{helper}}` helper has been moved to `ts-jest/utils`. Use `import { {{helper}} } from 'ts-jest/utils'` instead.",
40
39
AstTransformerArrayConfig='The configuration for astTransformers as string[] is deprecated and will be removed in ts-jest 27. Please define your custom AST transformers in a form of an object. More information you can check online documentation https://kulshekhar.github.io/ts-jest/user/config/astTransformers',
41
-
TsConfig='The option `tsConfig` is deprecated and will be removed in ts-jest 27, use `tsconfig` instead',
42
40
PackageJson='The option `packageJson` is deprecated and will be removed in ts-jest 27. This option is not used by internal `ts-jest`',
0 commit comments