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", () => {