Jiuyun Wang
Jiuyun Wang
Might be related. I got an issue with OAS 3.0. Jest returns the following error: ``` Test suite failed to run A jest worker process (pid=46310) was terminated by another...
The Jest crash has something to do with the following two configuration fields: ``` await initialize({ ... routesGlob: "**/*.{ts,js}", routesIndexFileRegExp: /(?:index)?\.[tj]s$/, ... }); ``` If I comment them out to...
@mwithington: It is working with `jest-light-runner` as suggested by you against js files instead the ones ts-jest transformed from ts files. So it appears to be typescript related problem when...