13 lines
420 B
TypeScript
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;
|