9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
|
import { expect, use } from 'chai'
|
||
|
import { solidity } from 'ethereum-waffle'
|
||
|
import { jestSnapshotPlugin } from 'mocha-chai-jest-snapshot'
|
||
|
|
||
|
use(solidity)
|
||
|
use(jestSnapshotPlugin())
|
||
|
|
||
|
export { expect }
|