Compare commits

..

2 Commits

Author SHA1 Message Date
e3c9659af8 Merge branch 'use-mutex' 2025-07-29 13:17:37 +03:00
99c541a061 fix: fix indeterministic 2025-06-13 09:00:37 +03:00
2 changed files with 15 additions and 0 deletions

View File

@ -2,6 +2,7 @@ import path from 'node:path';
import { constructContractIssuer, constructContractRef, type PreparedCallInfo } from '@coinweb/contract-kit'; import { constructContractIssuer, constructContractRef, type PreparedCallInfo } from '@coinweb/contract-kit';
import { UnitTest, type ExecInfo, type RoundInfo, type UnitTestContext, type DbWriteOp } from '@coinweb/testing-sdk'; import { UnitTest, type ExecInfo, type RoundInfo, type UnitTestContext, type DbWriteOp } from '@coinweb/testing-sdk';
import { describe, it, expect, beforeAll } from 'vitest';
import { AddWordArgs, FEE, PUBLIC_METHODS } from '../../offchain/shared'; import { AddWordArgs, FEE, PUBLIC_METHODS } from '../../offchain/shared';

View File

@ -0,0 +1,14 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
reporters: 'default',
silent: false,
testTimeout: 240000,
teardownTimeout: 240000,
hookTimeout: 240000,
pool: 'forks',
},
});