cyruskong1

Results 3 comments of cyruskong1

Were you able to find a fix for this problem?

you can also use this ` jest.spyOn(global.console, 'error').mockImplementation(jest.fn())` like this `it('should do something', () => { jest.spyOn(global.console, 'error').mockImplementation(jest.fn()) // your test here })` mockImplementation will kind of hijack the thrown...

I got a different error but I was able to "fix" it by getting the webpack.config.js and the package.json from the master branch instead of the begin branch. After running...