refactor: more cleanup #164

Merged
mcataford merged 11 commits from more-refactor into master 2021-03-19 20:49:27 +00:00
Showing only changes of commit 5ea1d01345 - Show all commits

View file

@ -42,9 +42,9 @@ describe('Packwatch', () => {
let mockError let mockError
let workspacePath let workspacePath
beforeEach(() => { beforeEach(() => {
mockLogger = jest.spyOn(logger, 'log').mockImplementation() mockLogger = jest.spyOn(console, 'log').mockImplementation()
mockWarn = jest.spyOn(logger, 'warn').mockImplementation() mockWarn = jest.spyOn(console, 'warn').mockImplementation()
mockError = jest.spyOn(logger, 'error').mockImplementation() mockError = jest.spyOn(console, 'error').mockImplementation()
}) })
afterEach(async () => { afterEach(async () => {