nx/e2e/gatsby/jest.config.js
Miroslav Jonaš 45a4ddf67b
chore(testing): fix gatsby e2e CI setup (#5637)
* fix(testing): remove duplicate gatsby e2e target

* fix(core): add missing gatsby e2e to matrix

* chore(repo): fix gh matrix command

* chore(repo): remove affected flag from gh matrix

* chore(repo): use run-many for e2e matrix
2021-05-17 11:27:59 +02:00

11 lines
287 B
JavaScript

module.exports = {
preset: '../../jest.preset.js',
transform: {
'^.+\\.[tj]sx?$': 'ts-jest',
},
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'html'],
maxWorkers: 1,
globals: { 'ts-jest': { tsconfig: '<rootDir>/tsconfig.spec.json' } },
displayName: 'e2e-gatsby',
};