maxGraph/packages/core/jest.config.cjs

8 lines
265 B
JavaScript
Raw Normal View History

/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
// preset: 'ts-jest',
preset: 'ts-jest/presets/default-esm',
testEnvironment: 'jsdom', // need to access to the browser objects
testMatch: ['**/__tests__/**/?(*.)+(spec|test).ts'],
};