mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-13 15:38:59 +00:00
wip test
This commit is contained in:
parent
a046930097
commit
6543a43854
1 changed files with 2 additions and 2 deletions
|
|
@ -4,11 +4,11 @@ import {
|
|||
NotFound,
|
||||
} from '../../../../website/server/libs/errors';
|
||||
|
||||
describe('logger', () => {
|
||||
describe.only('logger', () => {
|
||||
let logSpy;
|
||||
|
||||
beforeEach(() => {
|
||||
logSpy = sandbox.stub(winston.Logger.prototype, 'log');
|
||||
logSpy = sandbox.stub(Object.getPrototypeOf(winston.createLogger()), 'log');
|
||||
});
|
||||
|
||||
afterEach(() => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue