Compare commits

..

3 Commits

Author SHA1 Message Date
d5aaecce18 wip 2025-06-05 12:35:20 +03:00
d110ffee46 wip 2025-06-04 18:26:07 +03:00
186b719a94 wip 2025-05-15 10:28:57 +03:00
2 changed files with 0 additions and 15 deletions

View File

@ -2,7 +2,6 @@ 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

@ -1,14 +0,0 @@
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',
},
});