TypeError: expect(...).toMatchImageSnapshot is not a function
// Take screenshot with generateImage() const screenshot = await generateImage(); // and compare it to the previous sceenshot with toMatchImageSnapshot() expect(screenshot).toMatchImageSnapshot();
toMatchImageSnapshot is not existing naturally on expect object.
You need to manually extend with this code:
Recent Comments