You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, i would like to propose a example using a updated version of jest-cli.
If a dev tried to install the jest-cli today it will have a version that is not compatible with the example.
jest.unmock('../Foo'); import Foo from '../Foo';
those lines instead of jest.dontMock const Foo = required("../Foo");
did the trick on my updated Jest.
The text was updated successfully, but these errors were encountered:
Hi, i would like to propose a example using a updated version of jest-cli.
If a dev tried to install the jest-cli today it will have a version that is not compatible with the example.
jest.unmock('../Foo');
import Foo from '../Foo';
those lines instead of
jest.dontMock
const Foo = required("../Foo");
did the trick on my updated Jest.
The text was updated successfully, but these errors were encountered: