setup.ts 211 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
import chai = require('chai')
import chaiAsPromised from 'chai-as-promised'

// Chai plugins go here.
chai.use(chaiAsPromised)

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

export { should, expect }