mirror of
https://github.com/status-im/github-comment-manager.git
synced 2025-02-22 06:08:19 +00:00
11 lines
263 B
JavaScript
11 lines
263 B
JavaScript
import log from 'loglevel'
|
|
import chai from 'chai'
|
|
import sinonChai from 'sinon-chai'
|
|
import chaiAsPromised from 'chai-as-promised'
|
|
|
|
/* limit amount of console noise for tests */
|
|
log.setDefaultLevel(log.levels.WARN)
|
|
|
|
chai.use(sinonChai)
|
|
chai.use(chaiAsPromised);
|