init
This commit is contained in:
12
jest.config.ts
Normal file
12
jest.config.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user