Files
WorkshopBlockchainGift/jest.config.ts
2026-03-07 14:15:48 +03:00

13 lines
420 B
TypeScript

import type { Config } from 'jest';
const config: Config = {
preset: 'ts-jest',
globalSetup: './jest.setup.ts',
cache: false, // disabled caching to prevent old Tact files from being used after a rebuild
testEnvironment: '@ton/sandbox/jest-environment',
testPathIgnorePatterns: ['/node_modules/', '/dist/'],
reporters: ['default', ['@ton/sandbox/jest-reporter', {}]],
};
export default config;