From f7cc48495b085fe8f6cfa37e80e968d5b47639df Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 1 Jun 2022 23:21:30 +0200 Subject: test: install and configure cypress I also configure Jest to avoid conflicts between Cypress and Jest. --- tests/cypress/tsconfig.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/cypress/tsconfig.json (limited to 'tests/cypress/tsconfig.json') diff --git a/tests/cypress/tsconfig.json b/tests/cypress/tsconfig.json new file mode 100644 index 0000000..66b725c --- /dev/null +++ b/tests/cypress/tsconfig.json @@ -0,0 +1,10 @@ +{ + "extends": "../../tsconfig.json", + "compilerOptions": { + "isolatedModules": false, + "noEmit": true, + "types": ["cypress", "@testing-library/cypress"] + }, + "include": ["../../node_modules/cypress", "**/*.ts", "**/*.tsx"], + "exclude": ["**/*.test.ts", "**/*.test.tsx"] +} -- cgit v1.2.3