setup.ts 232 Bytes
Newer Older
Kelvin Fichter's avatar
Kelvin Fichter committed
1 2
/* External Imports */
import chai = require('chai')
Kelvin Fichter's avatar
Kelvin Fichter committed
3
import Mocha from 'mocha'
Kelvin Fichter's avatar
Kelvin Fichter committed
4 5 6 7 8 9
import { solidity } from 'ethereum-waffle'

chai.use(solidity)
const should = chai.should()
const expect = chai.expect

Kelvin Fichter's avatar
Kelvin Fichter committed
10
export { should, expect, Mocha }