Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e3c9659af8 | |||
| 99c541a061 |
@ -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';
|
||||||
|
|
||||||
|
|||||||
14
packages/contract.cm/vitest.config.ts
Normal file
14
packages/contract.cm/vitest.config.ts
Normal 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',
|
||||||
|
},
|
||||||
|
});
|
||||||
Loading…
x
Reference in New Issue
Block a user