Simple configuration of Jest with ts-jest produces error \"ReferenceError: describe is not defined\" in runtime. Here minimal example: https://github.com/PFight/jest-ts-desc
Found the problem. It was next row in jest.config.js:
testEnvironment: 'node',
Just removed it and error was fixed.