From 6a041bc9a4c99ae9dd1b69d0944b38219713589f Mon Sep 17 00:00:00 2001 From: mahula Date: Sun, 23 Feb 2025 23:42:58 +0100 Subject: [PATCH] package.json: add cypress e2e scripts --- package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package.json b/package.json index 0e58095f..46c2a4a6 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,8 @@ "lint": "npm run test:lint:eslint", "lintfix": "npm run test:lint:eslint -- --fix", "test:component": "cypress run --component --browser electron", + "test:e2e": "cypress run --e2e --browser electron", + "test:e2e:gui": "cypress open --e2e --browser electron", "test:unit": "npm run test:unit:dev -- run --coverage", "test:unit:dev": "vitest", "docs:generate": "typedoc --includeVersion --navigation.includeCategories true --plugin typedoc-plugin-missing-exports --plugin typedoc-plugin-coverage src/index.tsx",