mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-02-04 10:11:01 +00:00
9 lines
170 B
CoffeeScript
9 lines
170 B
CoffeeScript
|
chai = require 'chai'
|
||
|
chaiAsPromised = require('chai-as-promised')
|
||
|
sinonChai = require('sinon-chai')
|
||
|
|
||
|
chai.use(chaiAsPromised)
|
||
|
chai.use(sinonChai)
|
||
|
|
||
|
module.exports = chai
|