mirror of
https://github.com/status-im/github-comment-manager.git
synced 2025-02-16 19:37:17 +00:00
11 lines
283 B
JavaScript
11 lines
283 B
JavaScript
const log = require('loglevel')
|
|
const chai = require('chai')
|
|
const sinonChai = require('sinon-chai')
|
|
const chaiAsPromised = require('chai-as-promised')
|
|
|
|
/* limit amount of console noise for tests */
|
|
log.setDefaultLevel(log.levels.WARN)
|
|
|
|
chai.use(sinonChai)
|
|
chai.use(chaiAsPromised);
|