We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8066c95 commit fcfcee0Copy full SHA for fcfcee0
index.e2e.spec.ts
@@ -33,6 +33,13 @@ const close = async () => {
33
await mouse.leftClick();
34
};
35
36
+describe("E2E screen test", () => {
37
+ it("should throw on invalid images", async () => {
38
+ jest.setTimeout(30000);
39
+ await expect(screen.find("mouse.png")).rejects.toContain("Failed to load image");
40
+ });
41
+});
42
+
43
describe("E2E demo", () => {
44
it("should run without throwing", async () => {
45
jest.setTimeout(30000);
0 commit comments