forked from synapsecns/sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.mocharc.yml
33 lines (29 loc) · 917 Bytes
/
.mocharc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
node-option:
- 'es-module-specifier-resolution=node'
- 'loader=ts-node/esm'
extensions:
- ts
require:
- './test/test_setup.ts'
recursive: true
parallel: true
jobs: 6
spec:
# sync/non-network-based tests
- 'test/entities/*-test.ts'
- 'test/basic/*-test.ts'
- 'test/swappools/*-test.ts'
- 'test/token/*-test.ts'
- 'test/tokenswap/TokenSwap-test.ts'
- 'test/synapsebridge/buildBridgeTokenTransaction-test.ts'
- 'test/synapsebridge/checkSwapSupported-test.ts'
- 'test/synapsebridge/Slippages-test.ts'
# async/network-based tests
- 'test/synapsebridge/getEstimatedBridgeOutput-test.ts'
- 'test/synapsebridge/ProviderInteractions-test.ts'
- 'test/synapsebridge/ContractWrapperFunctions-test.ts'
- 'test/tokenswap/checkTokenAllowance-test.ts'
- 'test/tokenswap/SwapRate-test.ts'
- 'test/tokenswap/liquidity-test.ts'
- 'test/erc20/*-test.ts'
- 'test/explorer/explorer-test.ts'