Skip to content

Commit

Permalink
test(custom-compiler): skip due to ttypescript lacks ts@5 support so far
Browse files Browse the repository at this point in the history
  • Loading branch information
marcalexiei committed Mar 26, 2023
1 parent 453ff30 commit 6c6b378
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion e2e/__tests__/custom-compiler.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,19 @@ import { runNpmInstall } from '../utils'

const DIR_NAME = 'custom-compiler'

describe('ttypescript', () => {
/**
* Test disabled after typescript@5 support due to issues on ttypescript.
* Now typescript exports module rather than object namespaces so ttypescript is not working anymore.
* @see https://github.com/kulshekhar/ts-jest/pull/4064#issuecomment-1483937671
*
* Additional info can be found on the following links:
* @see https://github.com/cevek/ttypescript/issues/140
* @see https://github.com/microsoft/TypeScript/issues/52826
*
* Test can be re-enabled after the library supports typescript@5
*/
// eslint-disable-next-line jest/no-disabled-tests
describe.skip('ttypescript', () => {
const TTS_DIR_NAME = 'ttypescript'

beforeAll(() => {
Expand Down

0 comments on commit 6c6b378

Please sign in to comment.