question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

ts-jest --watch does not notice type-errors in modified tests

See original GitHub issue

🐛 Bug Report

Type errors that are created within a test-function are not recognized as errors and do not cause the test to fail.

To Reproduce

Steps to reproduce the behavior:

  1. Create a project with default versions and settings (git init && npm init -y && yarn add --dev jest typescript ts-jest && yarn ts-jest config:init).
  2. Create a test-file with the following content:
function myFunc(str: string) { return str }

it('test', () => {
    myFunc("1")
})
  1. Start jest using --watch: yarn jest --watch
  2. Replace "1" with 1 to create a type-error and save.

Expected behavior

  • The test will fail and an error is printed: Argument of type 'number' is not assignable to parameter of type 'string'.

Actual behavior

  • The test passes. No error is reported.

Link to repo (highly encouraged)

I can provide one, if necessary, but the setup is trivial.

Debug log:

# content of ts-jest.log :
{"context":{"allowJs":false,"logLevel":20,"namespace":"jest-preset","package":"ts-jest","version":"26.4.4"},"message":"creating jest presets not handling JavaScript files","sequence":1,"time":"2020-11-08T18:49:46.421Z"}
{"context":{"allowJs":false,"logLevel":20,"namespace":"jest-preset","package":"ts-jest","version":"26.4.4"},"message":"creating jest presets not handling JavaScript files","sequence":2,"time":"2020-11-08T18:49:46.426Z"}
{"context":{"logLevel":20,"namespace":"Importer","package":"ts-jest","version":"26.4.4"},"message":"creating Importer singleton","sequence":3,"time":"2020-11-08T18:49:47.612Z"}
{"context":{"actualVersion":"26.6.3","expectedVersion":">=26 <27","logLevel":20,"namespace":"versions","package":"ts-jest","version":"26.4.4"},"message":"checking version of jest: OK","sequence":4,"time":"2020-11-08T18:49:47.618Z"}
{"context":{"logLevel":20,"namespace":"ts-jest-transformer","package":"ts-jest","version":"26.4.4"},"message":"created new transformer","sequence":5,"time":"2020-11-08T18:49:47.618Z"}
{"context":{"logLevel":30,"namespace":"ts-jest-transformer","package":"ts-jest","version":"26.4.4"},"message":"no matching config-set found, creating a new one","sequence":6,"time":"2020-11-08T18:49:47.618Z"}
{"context":{"logLevel":20,"namespace":"Importer","package":"ts-jest","requireResult":{"exists":true,"given":"typescript","path":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/typescript.js"},"version":"26.4.4"},"message":"loaded module typescript","sequence":7,"time":"2020-11-08T18:49:47.619Z"}
{"context":{"logLevel":20,"namespace":"Importer","package":"ts-jest","version":"26.4.4"},"message":"patching typescript","sequence":8,"time":"2020-11-08T18:49:47.619Z"}
{"context":{"actualVersion":"4.0.5","expectedVersion":">=3.8 <5","logLevel":20,"namespace":"versions","package":"ts-jest","version":"26.4.4"},"message":"checking version of typescript: OK","sequence":9,"time":"2020-11-08T18:49:47.620Z"}
// Line 10 removed, it was too long.
{"context":{"config":{"automock":false,"cache":true,"cacheDirectory":"/tmp/jest_rs","clearMocks":false,"coveragePathIgnorePatterns":["/node_modules/"],"cwd":"/home/martin/Git/ts-jest-bug","detectLeaks":false,"detectOpenHandles":false,"errorOnDeprecated":false,"extraGlobals":[],"forceCoverageMatch":[],"globals":{},"haste":{"computeSha1":false,"throwOnModuleCollision":false},"injectGlobals":true,"moduleDirectories":["node_modules"],"moduleFileExtensions":["js","json","jsx","ts","tsx","node"],"moduleNameMapper":[],"modulePathIgnorePatterns":[],"name":"e1e627c5f5c7c9827e20df5fc29c23ea","prettierPath":"prettier","resetMocks":false,"resetModules":false,"restoreMocks":false,"rootDir":"/home/martin/Git/ts-jest-bug","roots":["/home/martin/Git/ts-jest-bug"],"runner":"jest-runner","setupFiles":[],"setupFilesAfterEnv":[],"skipFilter":false,"slowTestThreshold":5,"snapshotSerializers":[],"testEnvironment":"/home/martin/Git/ts-jest-bug/node_modules/jest-environment-node/build/index.js","testEnvironmentOptions":{},"testLocationInResults":false,"testMatch":["**/__tests__/**/*.[jt]s?(x)","**/?(*.)+(spec|test).[tj]s?(x)"],"testPathIgnorePatterns":["/node_modules/"],"testRegex":[],"testRunner":"/home/martin/Git/ts-jest-bug/node_modules/jest-jasmine2/build/index.js","testURL":"http://localhost","timers":"real","transform":[["^.+\\.tsx?$","/home/martin/Git/ts-jest-bug/node_modules/ts-jest/dist/index.js",{}]],"transformIgnorePatterns":["/node_modules/","\\.pnp\\.[^\\/]+$"],"watchPathIgnorePatterns":[]},"logLevel":20,"namespace":"backports","package":"ts-jest","version":"26.4.4"},"message":"backporting config","sequence":11,"time":"2020-11-08T18:49:47.643Z"}
{"context":{"jestConfig":{"automock":false,"cache":true,"cacheDirectory":"/tmp/jest_rs","clearMocks":false,"coveragePathIgnorePatterns":["/node_modules/"],"cwd":"/home/martin/Git/ts-jest-bug","detectLeaks":false,"detectOpenHandles":false,"errorOnDeprecated":false,"extraGlobals":[],"forceCoverageMatch":[],"globals":{"ts-jest":{}},"haste":{"computeSha1":false,"throwOnModuleCollision":false},"injectGlobals":true,"moduleDirectories":["node_modules"],"moduleFileExtensions":["js","json","jsx","ts","tsx","node"],"moduleNameMapper":[],"modulePathIgnorePatterns":[],"name":"e1e627c5f5c7c9827e20df5fc29c23ea","prettierPath":"prettier","resetMocks":false,"resetModules":false,"restoreMocks":false,"rootDir":"/home/martin/Git/ts-jest-bug","roots":["/home/martin/Git/ts-jest-bug"],"runner":"jest-runner","setupFiles":[],"setupFilesAfterEnv":[],"skipFilter":false,"slowTestThreshold":5,"snapshotSerializers":[],"testEnvironment":"/home/martin/Git/ts-jest-bug/node_modules/jest-environment-node/build/index.js","testEnvironmentOptions":{},"testLocationInResults":false,"testMatch":["**/__tests__/**/*.[jt]s?(x)","**/?(*.)+(spec|test).[tj]s?(x)"],"testPathIgnorePatterns":["/node_modules/"],"testRegex":[],"testRunner":"/home/martin/Git/ts-jest-bug/node_modules/jest-jasmine2/build/index.js","testURL":"http://localhost","timers":"real","transform":[["^.+\\.tsx?$","/home/martin/Git/ts-jest-bug/node_modules/ts-jest/dist/index.js",{}]],"transformIgnorePatterns":["/node_modules/","\\.pnp\\.[^\\/]+$"],"watchPathIgnorePatterns":[]},"logLevel":20,"namespace":"config","package":"ts-jest","version":"26.4.4"},"message":"normalized jest config","sequence":12,"time":"2020-11-08T18:49:47.643Z"}
{"context":{"logLevel":20,"namespace":"config","package":"ts-jest","version":"26.4.4"},"message":"babel is disabled","sequence":13,"time":"2020-11-08T18:49:47.643Z"}
{"context":{"diagnostics":{"ignoreCodes":[6059,18002,18003],"pretty":true,"throws":true},"logLevel":20,"namespace":"config","package":"ts-jest","version":"26.4.4"},"message":"normalized diagnostics config via ts-jest option","sequence":14,"time":"2020-11-08T18:49:47.644Z"}
{"context":{"logLevel":20,"namespace":"config","package":"ts-jest","tsconfig":{"compileOnSave":false,"configFileSpecs":{"includeSpecs":["**/*"],"validatedIncludeSpecs":["**/*"],"wildcardDirectories":{"/home/martin/Git/ts-jest-bug":1}},"errors":[],"fileNames":["/home/martin/Git/ts-jest-bug/tests/index.test.ts"],"options":{"declaration":false,"inlineSourceMap":false,"inlineSources":true,"module":1,"noEmit":false,"removeComments":false,"sourceMap":true,"target":1},"raw":{"compileOnSave":false,"compilerOptions":{}},"typeAcquisition":{"enable":false,"exclude":[],"include":[]},"wildcardDirectories":{"/home/martin/Git/ts-jest-bug":1}},"version":"26.4.4"},"message":"normalized typescript config via ts-jest option","sequence":15,"time":"2020-11-08T18:49:47.649Z"}
{"context":{"customTransformers":{"before":[null]},"logLevel":20,"namespace":"config","package":"ts-jest","version":"26.4.4"},"message":"normalized custom AST transformers via ts-jest option","sequence":16,"time":"2020-11-08T18:49:47.649Z"}
{"context":{"cacheDirectory":"/tmp/jest_rs/ts-jest/7c/6712e1db59802f9c36e1ae7a0bd52cf2794586","logLevel":20,"namespace":"config","package":"ts-jest","version":"26.4.4"},"message":"will use file caching","sequence":17,"time":"2020-11-08T18:49:47.678Z"}
{"context":{"fileName":"/home/martin/Git/ts-jest-bug/tests/index.test.ts","logLevel":20,"namespace":"ts-jest-transformer","package":"ts-jest","transformOptions":{"config":{"automock":false,"cache":true,"cacheDirectory":"/tmp/jest_rs","clearMocks":false,"coveragePathIgnorePatterns":["/node_modules/"],"cwd":"/home/martin/Git/ts-jest-bug","detectLeaks":false,"detectOpenHandles":false,"errorOnDeprecated":false,"extraGlobals":[],"forceCoverageMatch":[],"globals":{},"haste":{"computeSha1":false,"throwOnModuleCollision":false},"injectGlobals":true,"moduleDirectories":["node_modules"],"moduleFileExtensions":["js","json","jsx","ts","tsx","node"],"moduleNameMapper":[],"modulePathIgnorePatterns":[],"name":"e1e627c5f5c7c9827e20df5fc29c23ea","prettierPath":"prettier","resetMocks":false,"resetModules":false,"restoreMocks":false,"rootDir":"/home/martin/Git/ts-jest-bug","roots":["/home/martin/Git/ts-jest-bug"],"runner":"jest-runner","setupFiles":[],"setupFilesAfterEnv":[],"skipFilter":false,"slowTestThreshold":5,"snapshotSerializers":[],"testEnvironment":"/home/martin/Git/ts-jest-bug/node_modules/jest-environment-node/build/index.js","testEnvironmentOptions":{},"testLocationInResults":false,"testMatch":["**/__tests__/**/*.[jt]s?(x)","**/?(*.)+(spec|test).[tj]s?(x)"],"testPathIgnorePatterns":["/node_modules/"],"testRegex":[],"testRunner":"/home/martin/Git/ts-jest-bug/node_modules/jest-jasmine2/build/index.js","testURL":"http://localhost","timers":"real","transform":[["^.+\\.tsx?$","/home/martin/Git/ts-jest-bug/node_modules/ts-jest/dist/index.js",{}]],"transformIgnorePatterns":["/node_modules/","\\.pnp\\.[^\\/]+$"],"watchPathIgnorePatterns":[]},"instrument":false,"rootDir":"/home/martin/Git/ts-jest-bug","supportsDynamicImport":false,"supportsStaticESM":false},"version":"26.4.4"},"message":"computing cache key for /home/martin/Git/ts-jest-bug/tests/index.test.ts","sequence":18,"time":"2020-11-08T18:49:47.679Z"}
{"context":{"fileName":"/home/martin/Git/ts-jest-bug/tests/index.test.ts","logLevel":20,"namespace":"ts-jest-transformer","package":"ts-jest","transformOptions":{"instrument":false,"supportsDynamicImport":false,"supportsStaticESM":false},"version":"26.4.4"},"message":"processing /home/martin/Git/ts-jest-bug/tests/index.test.ts","sequence":19,"time":"2020-11-08T18:49:47.680Z"}
{"context":{"logLevel":20,"namespace":"ts-compiler","package":"ts-jest","version":"26.4.4"},"message":"initializeLanguageServiceInstance(): create typescript compiler","sequence":20,"time":"2020-11-08T18:49:47.680Z"}
{"context":{"logLevel":20,"namespace":"ts-compiler","package":"ts-jest","version":"26.4.4"},"message":"initializeLanguageServiceInstance(): creating language service","sequence":21,"time":"2020-11-08T18:49:47.681Z"}
{"context":{"fileName":"/home/martin/Git/ts-jest-bug/tests/index.test.ts","logLevel":20,"namespace":"ts-compiler","package":"ts-jest","version":"26.4.4"},"message":"compileAndUpdateOutput(): get compile output","sequence":22,"time":"2020-11-08T18:49:47.690Z"}
{"context":{"fileName":"/home/martin/Git/ts-jest-bug/tests/index.test.ts","logLevel":20,"namespace":"ts-compiler","package":"ts-jest","version":"26.4.4"},"message":"compileFn(): compiling using language service","sequence":23,"time":"2020-11-08T18:49:47.690Z"}
{"context":{"fileName":"/home/martin/Git/ts-jest-bug/tests/index.test.ts","logLevel":20,"namespace":"ts-compiler","package":"ts-jest","version":"26.4.4"},"message":"updateMemoryCache(): update memory cache for language service","sequence":24,"time":"2020-11-08T18:49:47.690Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/tests/index.test.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":25,"time":"2020-11-08T18:49:47.691Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":26,"time":"2020-11-08T18:49:47.699Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":27,"time":"2020-11-08T18:49:47.701Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":28,"time":"2020-11-08T18:49:47.702Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":29,"time":"2020-11-08T18:49:47.703Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":30,"time":"2020-11-08T18:49:47.705Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":31,"time":"2020-11-08T18:49:47.706Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":32,"time":"2020-11-08T18:49:47.707Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":33,"time":"2020-11-08T18:49:47.708Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":34,"time":"2020-11-08T18:49:47.709Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":35,"time":"2020-11-08T18:49:47.713Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":36,"time":"2020-11-08T18:49:47.725Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":37,"time":"2020-11-08T18:49:47.726Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":38,"time":"2020-11-08T18:49:47.728Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":39,"time":"2020-11-08T18:49:47.730Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":40,"time":"2020-11-08T18:49:47.732Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":41,"time":"2020-11-08T18:49:47.734Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":42,"time":"2020-11-08T18:49:47.736Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":43,"time":"2020-11-08T18:49:47.737Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":44,"time":"2020-11-08T18:49:47.738Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":45,"time":"2020-11-08T18:49:47.739Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":46,"time":"2020-11-08T18:49:47.741Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":47,"time":"2020-11-08T18:49:47.741Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":48,"time":"2020-11-08T18:49:47.742Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":49,"time":"2020-11-08T18:49:47.743Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":50,"time":"2020-11-08T18:49:47.746Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":51,"time":"2020-11-08T18:49:47.751Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":52,"time":"2020-11-08T18:49:47.752Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":53,"time":"2020-11-08T18:49:47.753Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":54,"time":"2020-11-08T18:49:47.754Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":55,"time":"2020-11-08T18:49:47.755Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/babel__core/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":56,"time":"2020-11-08T18:49:47.756Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":57,"time":"2020-11-08T18:49:47.756Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":58,"time":"2020-11-08T18:49:47.791Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":59,"time":"2020-11-08T18:49:47.792Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":60,"time":"2020-11-08T18:49:47.794Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":61,"time":"2020-11-08T18:49:47.795Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":62,"time":"2020-11-08T18:49:47.796Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":63,"time":"2020-11-08T18:49:47.797Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":64,"time":"2020-11-08T18:49:47.799Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":65,"time":"2020-11-08T18:49:47.800Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/babel__generator/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":66,"time":"2020-11-08T18:49:47.801Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":67,"time":"2020-11-08T18:49:47.801Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@babel/types/lib/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":68,"time":"2020-11-08T18:49:47.808Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":69,"time":"2020-11-08T18:49:47.808Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/babel__traverse/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":70,"time":"2020-11-08T18:49:47.905Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":71,"time":"2020-11-08T18:49:47.905Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/babel__template/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":72,"time":"2020-11-08T18:49:47.961Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":73,"time":"2020-11-08T18:49:47.961Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@babel/parser/typings/babel-parser.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":74,"time":"2020-11-08T18:49:47.963Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":75,"time":"2020-11-08T18:49:47.963Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":76,"time":"2020-11-08T18:49:47.967Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/graceful-fs/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":77,"time":"2020-11-08T18:49:47.968Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":78,"time":"2020-11-08T18:49:47.968Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":79,"time":"2020-11-08T18:49:47.969Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":80,"time":"2020-11-08T18:49:47.971Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":81,"time":"2020-11-08T18:49:47.971Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/base.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":82,"time":"2020-11-08T18:49:47.971Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":83,"time":"2020-11-08T18:49:47.971Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/ts3.6/base.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":84,"time":"2020-11-08T18:49:47.972Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":85,"time":"2020-11-08T18:49:47.972Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/ts3.4/base.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":86,"time":"2020-11-08T18:49:47.972Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":87,"time":"2020-11-08T18:49:47.972Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/globals.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":88,"time":"2020-11-08T18:49:47.973Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":89,"time":"2020-11-08T18:49:47.973Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/async_hooks.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":90,"time":"2020-11-08T18:49:47.982Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":91,"time":"2020-11-08T18:49:47.982Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/buffer.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":92,"time":"2020-11-08T18:49:47.984Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":93,"time":"2020-11-08T18:49:47.984Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/child_process.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":94,"time":"2020-11-08T18:49:47.985Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":95,"time":"2020-11-08T18:49:47.985Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/cluster.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":96,"time":"2020-11-08T18:49:48.004Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":97,"time":"2020-11-08T18:49:48.004Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/console.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":98,"time":"2020-11-08T18:49:48.011Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":99,"time":"2020-11-08T18:49:48.011Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/constants.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":100,"time":"2020-11-08T18:49:48.013Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":101,"time":"2020-11-08T18:49:48.013Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/crypto.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":102,"time":"2020-11-08T18:49:48.016Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":103,"time":"2020-11-08T18:49:48.016Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/dgram.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":104,"time":"2020-11-08T18:49:48.035Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":105,"time":"2020-11-08T18:49:48.035Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/dns.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":106,"time":"2020-11-08T18:49:48.040Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":107,"time":"2020-11-08T18:49:48.040Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/domain.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":108,"time":"2020-11-08T18:49:48.047Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":109,"time":"2020-11-08T18:49:48.047Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/events.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":110,"time":"2020-11-08T18:49:48.048Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":111,"time":"2020-11-08T18:49:48.048Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/fs.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":112,"time":"2020-11-08T18:49:48.050Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":113,"time":"2020-11-08T18:49:48.050Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/fs/promises.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":114,"time":"2020-11-08T18:49:48.092Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":115,"time":"2020-11-08T18:49:48.092Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/http.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":116,"time":"2020-11-08T18:49:48.100Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":117,"time":"2020-11-08T18:49:48.100Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/http2.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":118,"time":"2020-11-08T18:49:48.106Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":119,"time":"2020-11-08T18:49:48.106Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/https.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":120,"time":"2020-11-08T18:49:48.129Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":121,"time":"2020-11-08T18:49:48.129Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/inspector.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":122,"time":"2020-11-08T18:49:48.130Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":123,"time":"2020-11-08T18:49:48.130Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/module.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":124,"time":"2020-11-08T18:49:48.159Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":125,"time":"2020-11-08T18:49:48.159Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/net.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":126,"time":"2020-11-08T18:49:48.160Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":127,"time":"2020-11-08T18:49:48.160Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/os.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":128,"time":"2020-11-08T18:49:48.164Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":129,"time":"2020-11-08T18:49:48.164Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/path.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":130,"time":"2020-11-08T18:49:48.166Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":131,"time":"2020-11-08T18:49:48.166Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/perf_hooks.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":132,"time":"2020-11-08T18:49:48.169Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":133,"time":"2020-11-08T18:49:48.169Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/process.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":134,"time":"2020-11-08T18:49:48.174Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":135,"time":"2020-11-08T18:49:48.174Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/punycode.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":136,"time":"2020-11-08T18:49:48.180Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":137,"time":"2020-11-08T18:49:48.180Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/querystring.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":138,"time":"2020-11-08T18:49:48.181Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":139,"time":"2020-11-08T18:49:48.181Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/readline.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":140,"time":"2020-11-08T18:49:48.181Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":141,"time":"2020-11-08T18:49:48.181Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/repl.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":142,"time":"2020-11-08T18:49:48.184Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":143,"time":"2020-11-08T18:49:48.184Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/stream.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":144,"time":"2020-11-08T18:49:48.189Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":145,"time":"2020-11-08T18:49:48.189Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/string_decoder.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":146,"time":"2020-11-08T18:49:48.195Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":147,"time":"2020-11-08T18:49:48.195Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/timers.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":148,"time":"2020-11-08T18:49:48.195Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":149,"time":"2020-11-08T18:49:48.195Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/tls.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":150,"time":"2020-11-08T18:49:48.196Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":151,"time":"2020-11-08T18:49:48.196Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/trace_events.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":152,"time":"2020-11-08T18:49:48.206Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":153,"time":"2020-11-08T18:49:48.206Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/tty.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":154,"time":"2020-11-08T18:49:48.207Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":155,"time":"2020-11-08T18:49:48.207Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/url.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":156,"time":"2020-11-08T18:49:48.208Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":157,"time":"2020-11-08T18:49:48.208Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/util.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":158,"time":"2020-11-08T18:49:48.210Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":159,"time":"2020-11-08T18:49:48.210Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/v8.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":160,"time":"2020-11-08T18:49:48.219Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":161,"time":"2020-11-08T18:49:48.219Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/vm.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":162,"time":"2020-11-08T18:49:48.221Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":163,"time":"2020-11-08T18:49:48.221Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/worker_threads.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":164,"time":"2020-11-08T18:49:48.222Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":165,"time":"2020-11-08T18:49:48.222Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/zlib.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":166,"time":"2020-11-08T18:49:48.225Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":167,"time":"2020-11-08T18:49:48.225Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2018.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":168,"time":"2020-11-08T18:49:48.229Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":169,"time":"2020-11-08T18:49:48.229Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2017.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":170,"time":"2020-11-08T18:49:48.229Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":171,"time":"2020-11-08T18:49:48.229Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2016.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":172,"time":"2020-11-08T18:49:48.230Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":173,"time":"2020-11-08T18:49:48.230Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":174,"time":"2020-11-08T18:49:48.230Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":175,"time":"2020-11-08T18:49:48.230Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es5.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":176,"time":"2020-11-08T18:49:48.230Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":177,"time":"2020-11-08T18:49:48.230Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.core.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":178,"time":"2020-11-08T18:49:48.282Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":179,"time":"2020-11-08T18:49:48.282Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.collection.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":180,"time":"2020-11-08T18:49:48.285Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":181,"time":"2020-11-08T18:49:48.285Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.iterable.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":182,"time":"2020-11-08T18:49:48.286Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":183,"time":"2020-11-08T18:49:48.286Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.symbol.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":184,"time":"2020-11-08T18:49:48.288Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":185,"time":"2020-11-08T18:49:48.288Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.generator.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":186,"time":"2020-11-08T18:49:48.289Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":187,"time":"2020-11-08T18:49:48.289Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.promise.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":188,"time":"2020-11-08T18:49:48.289Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":189,"time":"2020-11-08T18:49:48.289Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.proxy.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":190,"time":"2020-11-08T18:49:48.291Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":191,"time":"2020-11-08T18:49:48.291Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.reflect.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":192,"time":"2020-11-08T18:49:48.291Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":193,"time":"2020-11-08T18:49:48.291Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":194,"time":"2020-11-08T18:49:48.291Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":195,"time":"2020-11-08T18:49:48.291Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2016.array.include.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":196,"time":"2020-11-08T18:49:48.293Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":197,"time":"2020-11-08T18:49:48.293Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2017.object.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":198,"time":"2020-11-08T18:49:48.294Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":199,"time":"2020-11-08T18:49:48.294Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":200,"time":"2020-11-08T18:49:48.295Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":201,"time":"2020-11-08T18:49:48.295Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2017.string.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":202,"time":"2020-11-08T18:49:48.295Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":203,"time":"2020-11-08T18:49:48.295Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2017.intl.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":204,"time":"2020-11-08T18:49:48.296Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":205,"time":"2020-11-08T18:49:48.296Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":206,"time":"2020-11-08T18:49:48.296Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":207,"time":"2020-11-08T18:49:48.296Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":208,"time":"2020-11-08T18:49:48.296Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":209,"time":"2020-11-08T18:49:48.296Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":210,"time":"2020-11-08T18:49:48.297Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":211,"time":"2020-11-08T18:49:48.297Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2018.promise.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":212,"time":"2020-11-08T18:49:48.297Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":213,"time":"2020-11-08T18:49:48.297Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2018.regexp.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":214,"time":"2020-11-08T18:49:48.297Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":215,"time":"2020-11-08T18:49:48.297Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2018.intl.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":216,"time":"2020-11-08T18:49:48.298Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":217,"time":"2020-11-08T18:49:48.298Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.esnext.intl.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":218,"time":"2020-11-08T18:49:48.298Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":219,"time":"2020-11-08T18:49:48.298Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2020.bigint.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":220,"time":"2020-11-08T18:49:48.298Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":221,"time":"2020-11-08T18:49:48.298Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/globals.global.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":222,"time":"2020-11-08T18:49:48.302Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":223,"time":"2020-11-08T18:49:48.302Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/wasi.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":224,"time":"2020-11-08T18:49:48.303Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":225,"time":"2020-11-08T18:49:48.303Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/assert.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":226,"time":"2020-11-08T18:49:48.303Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":227,"time":"2020-11-08T18:49:48.303Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/istanbul-lib-coverage/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":228,"time":"2020-11-08T18:49:48.312Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":229,"time":"2020-11-08T18:49:48.312Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/istanbul-lib-report/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":230,"time":"2020-11-08T18:49:48.313Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":231,"time":"2020-11-08T18:49:48.313Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":232,"time":"2020-11-08T18:49:48.314Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":233,"time":"2020-11-08T18:49:48.315Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/istanbul-reports/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":234,"time":"2020-11-08T18:49:48.316Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":235,"time":"2020-11-08T18:49:48.316Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":236,"time":"2020-11-08T18:49:48.317Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":237,"time":"2020-11-08T18:49:48.318Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/jest/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":238,"time":"2020-11-08T18:49:48.318Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":239,"time":"2020-11-08T18:49:48.318Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":240,"time":"2020-11-08T18:49:48.326Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":241,"time":"2020-11-08T18:49:48.326Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/jest-diff/build/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":242,"time":"2020-11-08T18:49:48.327Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":243,"time":"2020-11-08T18:49:48.327Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":244,"time":"2020-11-08T18:49:48.328Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":245,"time":"2020-11-08T18:49:48.328Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":246,"time":"2020-11-08T18:49:48.328Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":247,"time":"2020-11-08T18:49:48.329Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/jest-diff/build/cleanupSemantic.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":248,"time":"2020-11-08T18:49:48.329Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":249,"time":"2020-11-08T18:49:48.329Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/jest-diff/build/diffLines.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":250,"time":"2020-11-08T18:49:48.331Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":251,"time":"2020-11-08T18:49:48.331Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/jest-diff/build/types.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":252,"time":"2020-11-08T18:49:48.331Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":253,"time":"2020-11-08T18:49:48.331Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/jest-diff/build/printDiffs.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":254,"time":"2020-11-08T18:49:48.332Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":255,"time":"2020-11-08T18:49:48.332Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/pretty-format/build/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":256,"time":"2020-11-08T18:49:48.333Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":257,"time":"2020-11-08T18:49:48.333Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":258,"time":"2020-11-08T18:49:48.336Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/pretty-format/build/types.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":259,"time":"2020-11-08T18:49:48.337Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":260,"time":"2020-11-08T18:49:48.337Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/normalize-package-data/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":261,"time":"2020-11-08T18:49:48.348Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":262,"time":"2020-11-08T18:49:48.348Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/prettier/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":263,"time":"2020-11-08T18:49:48.349Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":264,"time":"2020-11-08T18:49:48.349Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/stack-utils/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":265,"time":"2020-11-08T18:49:48.359Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":266,"time":"2020-11-08T18:49:48.359Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/yargs/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":267,"time":"2020-11-08T18:49:48.360Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":268,"time":"2020-11-08T18:49:48.360Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":269,"time":"2020-11-08T18:49:48.374Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":270,"time":"2020-11-08T18:49:48.375Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/yargs-parser/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":271,"time":"2020-11-08T18:49:48.375Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":272,"time":"2020-11-08T18:49:48.375Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":273,"time":"2020-11-08T18:49:48.376Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":274,"time":"2020-11-08T18:49:48.376Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.dom.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":275,"time":"2020-11-08T18:49:48.377Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":276,"time":"2020-11-08T18:49:48.377Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":277,"time":"2020-11-08T18:49:48.543Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":278,"time":"2020-11-08T18:49:48.544Z"}
{"context":{"cacheHit":false,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.scripthost.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache miss","sequence":279,"time":"2020-11-08T18:49:48.544Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":280,"time":"2020-11-08T18:49:48.544Z"}
{"context":{"call":null,"logLevel":20,"namespace":"ts-hoisting","package":"ts-jest","version":"26.4.4"},"message":"visitSourceFileNode(): hoisting","sequence":281,"time":"2020-11-08T18:49:49.071Z"}
{"context":{"fileName":"/home/martin/Git/ts-jest-bug/tests/index.test.ts","logLevel":20,"namespace":"ts-compiler","package":"ts-jest","version":"26.4.4"},"message":"compileFn(): computing diagnostics using language service","sequence":282,"time":"2020-11-08T18:49:49.085Z"}
{"context":{"logLevel":20,"namespace":"ts-jest-transformer","package":"ts-jest","version":"26.4.4"},"message":"created new transformer","sequence":283,"time":"2020-11-08T18:49:52.421Z"}
{"context":{"fileName":"/home/martin/Git/ts-jest-bug/tests/index.test.ts","logLevel":20,"namespace":"ts-jest-transformer","package":"ts-jest","transformOptions":{"config":{"automock":false,"cache":true,"cacheDirectory":"/tmp/jest_rs","clearMocks":false,"coveragePathIgnorePatterns":["/node_modules/"],"cwd":"/home/martin/Git/ts-jest-bug","detectLeaks":false,"detectOpenHandles":false,"errorOnDeprecated":false,"extraGlobals":[],"forceCoverageMatch":[],"globals":{},"haste":{"computeSha1":false,"throwOnModuleCollision":false},"injectGlobals":true,"moduleDirectories":["node_modules"],"moduleFileExtensions":["js","json","jsx","ts","tsx","node"],"moduleNameMapper":[],"modulePathIgnorePatterns":[],"name":"e1e627c5f5c7c9827e20df5fc29c23ea","prettierPath":"prettier","resetMocks":false,"resetModules":false,"restoreMocks":false,"rootDir":"/home/martin/Git/ts-jest-bug","roots":["/home/martin/Git/ts-jest-bug"],"runner":"jest-runner","setupFiles":[],"setupFilesAfterEnv":[],"skipFilter":false,"slowTestThreshold":5,"snapshotSerializers":[],"testEnvironment":"/home/martin/Git/ts-jest-bug/node_modules/jest-environment-node/build/index.js","testEnvironmentOptions":{},"testLocationInResults":false,"testMatch":["**/__tests__/**/*.[jt]s?(x)","**/?(*.)+(spec|test).[tj]s?(x)"],"testPathIgnorePatterns":["/node_modules/"],"testRegex":[],"testRunner":"/home/martin/Git/ts-jest-bug/node_modules/jest-jasmine2/build/index.js","testURL":"http://localhost","timers":"real","transform":[["^.+\\.tsx?$","/home/martin/Git/ts-jest-bug/node_modules/ts-jest/dist/index.js",{}]],"transformIgnorePatterns":["/node_modules/","\\.pnp\\.[^\\/]+$"],"watchPathIgnorePatterns":[]},"instrument":false,"rootDir":"/home/martin/Git/ts-jest-bug","supportsDynamicImport":false,"supportsStaticESM":false},"version":"26.4.4"},"message":"computing cache key for /home/martin/Git/ts-jest-bug/tests/index.test.ts","sequence":284,"time":"2020-11-08T18:49:52.421Z"}
{"context":{"fileName":"/home/martin/Git/ts-jest-bug/tests/index.test.ts","logLevel":20,"namespace":"ts-jest-transformer","package":"ts-jest","transformOptions":{"instrument":false,"supportsDynamicImport":false,"supportsStaticESM":false},"version":"26.4.4"},"message":"processing /home/martin/Git/ts-jest-bug/tests/index.test.ts","sequence":285,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"fileName":"/home/martin/Git/ts-jest-bug/tests/index.test.ts","logLevel":20,"namespace":"ts-compiler","package":"ts-jest","version":"26.4.4"},"message":"compileAndUpdateOutput(): get compile output","sequence":286,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"fileName":"/home/martin/Git/ts-jest-bug/tests/index.test.ts","logLevel":20,"namespace":"ts-compiler","package":"ts-jest","version":"26.4.4"},"message":"compileFn(): compiling using language service","sequence":287,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"fileName":"/home/martin/Git/ts-jest-bug/tests/index.test.ts","logLevel":20,"namespace":"ts-compiler","package":"ts-jest","version":"26.4.4"},"message":"updateMemoryCache(): update memory cache for language service","sequence":288,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/tests/index.test.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":289,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/babel__core/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":290,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/babel__generator/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":291,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@babel/types/lib/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":292,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/babel__traverse/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":293,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/babel__template/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":294,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@babel/parser/typings/babel-parser.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":295,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/graceful-fs/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":296,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":297,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/base.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":298,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/ts3.6/base.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":299,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/ts3.4/base.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":300,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/globals.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":301,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/async_hooks.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":302,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/buffer.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":303,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/child_process.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":304,"time":"2020-11-08T18:49:52.422Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/cluster.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":305,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/console.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":306,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/constants.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":307,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/crypto.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":308,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/dgram.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":309,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/dns.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":310,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/domain.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":311,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/events.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":312,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/fs.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":313,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/fs/promises.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":314,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/http.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":315,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/http2.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":316,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/https.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":317,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/inspector.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":318,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/module.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":319,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/net.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":320,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/os.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":321,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/path.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":322,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/perf_hooks.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":323,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/process.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":324,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/punycode.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":325,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/querystring.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":326,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/readline.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":327,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/repl.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":328,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/stream.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":329,"time":"2020-11-08T18:49:52.423Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/string_decoder.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":330,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/timers.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":331,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/tls.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":332,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/trace_events.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":333,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/tty.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":334,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/url.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":335,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/util.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":336,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/v8.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":337,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/vm.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":338,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/worker_threads.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":339,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/zlib.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":340,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2018.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":341,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2017.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":342,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2016.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":343,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":344,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es5.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":345,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.core.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":346,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.collection.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":347,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.iterable.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":348,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.symbol.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":349,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.generator.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":350,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.promise.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":351,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.proxy.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":352,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.reflect.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":353,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":354,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2016.array.include.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":355,"time":"2020-11-08T18:49:52.424Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2017.object.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":356,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":357,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2017.string.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":358,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2017.intl.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":359,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":360,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":361,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":362,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2018.promise.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":363,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2018.regexp.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":364,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2018.intl.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":365,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.esnext.intl.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":366,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.es2020.bigint.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":367,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/globals.global.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":368,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/wasi.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":369,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/node/assert.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":370,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/istanbul-lib-coverage/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":371,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/istanbul-lib-report/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":372,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/istanbul-reports/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":373,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/jest/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":374,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/jest-diff/build/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":375,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/jest-diff/build/cleanupSemantic.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":376,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/jest-diff/build/diffLines.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":377,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/jest-diff/build/types.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":378,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/jest-diff/build/printDiffs.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":379,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/pretty-format/build/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":380,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/pretty-format/build/types.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":381,"time":"2020-11-08T18:49:52.425Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/normalize-package-data/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":382,"time":"2020-11-08T18:49:52.426Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/prettier/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":383,"time":"2020-11-08T18:49:52.426Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/stack-utils/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":384,"time":"2020-11-08T18:49:52.426Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/yargs/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":385,"time":"2020-11-08T18:49:52.426Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/@types/yargs-parser/index.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":386,"time":"2020-11-08T18:49:52.426Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":387,"time":"2020-11-08T18:49:52.426Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.dom.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":388,"time":"2020-11-08T18:49:52.426Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":389,"time":"2020-11-08T18:49:52.426Z"}
{"context":{"cacheHit":true,"logLevel":10,"namespace":"ts-compiler","normalizedFileName":"/home/martin/Git/ts-jest-bug/node_modules/typescript/lib/lib.scripthost.d.ts","package":"ts-jest","version":"26.4.4"},"message":"getScriptSnapshot(): cache hit","sequence":390,"time":"2020-11-08T18:49:52.426Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":391,"time":"2020-11-08T18:49:52.428Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":392,"time":"2020-11-08T18:49:52.441Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":393,"time":"2020-11-08T18:49:52.443Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":394,"time":"2020-11-08T18:49:52.443Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":395,"time":"2020-11-08T18:49:52.443Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":396,"time":"2020-11-08T18:49:52.444Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":397,"time":"2020-11-08T18:49:52.444Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":398,"time":"2020-11-08T18:49:52.444Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":399,"time":"2020-11-08T18:49:52.444Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":400,"time":"2020-11-08T18:49:52.445Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":401,"time":"2020-11-08T18:49:52.446Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":402,"time":"2020-11-08T18:49:52.457Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":403,"time":"2020-11-08T18:49:52.457Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":404,"time":"2020-11-08T18:49:52.458Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":405,"time":"2020-11-08T18:49:52.458Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":406,"time":"2020-11-08T18:49:52.458Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":407,"time":"2020-11-08T18:49:52.459Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":408,"time":"2020-11-08T18:49:52.459Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":409,"time":"2020-11-08T18:49:52.459Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":410,"time":"2020-11-08T18:49:52.460Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":411,"time":"2020-11-08T18:49:52.460Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":412,"time":"2020-11-08T18:49:52.460Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":413,"time":"2020-11-08T18:49:52.461Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":414,"time":"2020-11-08T18:49:52.461Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":415,"time":"2020-11-08T18:49:52.461Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":416,"time":"2020-11-08T18:49:52.462Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":417,"time":"2020-11-08T18:49:52.464Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":418,"time":"2020-11-08T18:49:52.464Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":419,"time":"2020-11-08T18:49:52.464Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":420,"time":"2020-11-08T18:49:52.464Z"}
{"context":{"call":null,"logLevel":10,"namespace":"ts:serviceHost","package":"ts-jest","version":"26.4.4"},"message":"readFile","sequence":421,"time":"2020-11-08T18:49:52.465Z"}
{"context":{"call":null,"logLevel":20,"namespace":"ts-hoisting","package":"ts-jest","version":"26.4.4"},"message":"visitSourceFileNode(): hoisting","sequence":422,"time":"2020-11-08T18:49:52.475Z"}

envinfo

System:
    OS: Ubuntu (via Windows 10 WSL2)
    Node version: v14.10.1

Npm packages:
    jest: ^26.6.3
    ts-jest: ^26.4.4
    typescript: ^4.0.5

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:5

github_iconTop GitHub Comments

1reaction
ahnpnlcommented, Apr 17, 2021

You might need to clear cache before trying out. It should be fixed under next tag. If after clearing cache and still not work, pls provide your reproduce step 😃

0reactions
MartinJohnscommented, Apr 17, 2021

Thank you for this fast response! I take it that the fix is part of the next version, and not of the 26.5.5 version.

I can’t reproduce the issue in a fresh folder, so there’s likely some local caching issue in my project where I quickly tried to update to 27.0.0-next.11 (as you said).

Making sure everything is clean and updated correctly it also works as it should in my project. That’s awesome! 👍

Read more comments on GitHub >

github_iconTop Results From Across the Web

type changes not updated during watch mode #943 - GitHub
Issue When you make changes to the types, e.g. renaming a type, the changes cause the test to fail, even if the change...
Read more >
ts-jest --watch doesn't detect changes to imported class ...
The issue is when I run "jest --watch" or "jest --watchAll" and I remove a property of the class, my tests continue to...
Read more >
Run/Debug Configuration: Jest | IntelliJ IDEA Documentation
In this area, specify the tests to be executed. The available options are: All tests: choose this option to run all the tests...
Read more >
Diagnostics option | ts-jest - Huafu
The diagnostics option allows to configure error reporting. It can both be enabled/disabled entirely or limited to a specific type of errors and/or...
Read more >
Unit Testing JavaScript/TypeScript in AEM with Jest - Blog
For development purposes, we also added a test-watch script too, which will continually watch modified test files and report the output in the ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found