From 15ecb19c6592221505355d084af9875b5adccc34 Mon Sep 17 00:00:00 2001 From: Karel De Smet Date: Tue, 22 Dec 2020 21:15:20 +0100 Subject: [PATCH] Added extra test for error handling --- helpers/__tests__/postwomanTesting.spec.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/helpers/__tests__/postwomanTesting.spec.js b/helpers/__tests__/postwomanTesting.spec.js index 1afa61622..83184b39a 100644 --- a/helpers/__tests__/postwomanTesting.spec.js +++ b/helpers/__tests__/postwomanTesting.spec.js @@ -19,6 +19,11 @@ describe("Error handling", () => { test("errors array is empty on a successful test", () => { expect(getErrors("pw.expect(1).toBe(1)")).toStrictEqual([]) }) + test("throws error at a variable which is not declared", () => { + expect(() => { + runTestScriptWithVariables("someVariable") + }).toThrow() + }) }) describe("toBe", () => {