diff --git a/e2e/package.json b/e2e/package.json new file mode 100644 index 0000000..12ad1fd --- /dev/null +++ b/e2e/package.json @@ -0,0 +1,15 @@ +{ + "name": "novalon-website-e2e-tests", + "version": "1.0.0", + "private": true, + "scripts": { + "test": "playwright test", + "test:standard": "TEST_TIER=standard playwright test --config=playwright.config.tiered.ts", + "test:fast": "TEST_TIER=fast playwright test --config=playwright.config.tiered.ts", + "test:deep": "TEST_TIER=deep playwright test --config=playwright.config.tiered.ts" + }, + "devDependencies": { + "@playwright/test": "^1.48.0", + "@types/node": "^20.0.0" + } +}