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

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

export { should, expect, Mocha }