From 0c4ff22173a02ce789b517ef9469792b59800da9 Mon Sep 17 00:00:00 2001 From: JasminMus <167111741+JasminMus@users.noreply.github.com> Date: Tue, 7 May 2024 08:47:23 +0200 Subject: [PATCH] update test scripts to exclude livness tests (#5529) Signed-off-by: Jasmin --- tests/sanity/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/sanity/package.json b/tests/sanity/package.json index 9d47ac0818..505c64b417 100644 --- a/tests/sanity/package.json +++ b/tests/sanity/package.json @@ -19,10 +19,10 @@ "format": "format tests", "ci": "playwright install --with-deps chromium", "test": "", - "uitest": "playwright test -c ./tests/playwright.config.ts", - "dev-uitest": "cross-env PLATFORM_URI=http://localhost:8080 PLATFORM_TRANSACTOR=ws://localhost:3333 SETTING=storage-dev.json SETTING_SECOND=storageSecond-dev.json playwright test -c ./tests/playwright.config.ts", + "uitest": "playwright test -c ./tests/playwright.config.ts --grep-invert '@livness'", + "dev-uitest": "cross-env PLATFORM_URI=http://localhost:8080 PLATFORM_TRANSACTOR=ws://localhost:3333 SETTING=storage-dev.json SETTING_SECOND=storageSecond-dev.json playwright test -c ./tests/playwright.config.ts --grep-invert '@livness'", "debug": "playwright test -c ./tests/playwright.config.ts --debug --headed", - "dev-debug": "cross-env PLATFORM_URI=http://localhost:8080 PLATFORM_TRANSACTOR=ws://localhost:3333 SETTING=storage-dev.json SETTING_SECOND=storageSecond-dev.json playwright test -c ./tests/playwright.config.ts --debug --headed", + "dev-debug": "cross-env PLATFORM_URI=http://localhost:8080 PLATFORM_TRANSACTOR=ws://localhost:3333 SETTING=storage-dev.json SETTING_SECOND=storageSecond-dev.json playwright test -c ./tests/playwright.config.ts --debug --headed --grep-invert '@livness'", "codegen": "playwright codegen --load-storage storage.json http://localhost:8083/workbench/sanity-ws/", "dev-codegen": "cross-env playwright codegen --load-storage storage-dev.json http://localhost:8080/workbench/sanity-ws/", "allure:generate": "allure generate allure-results -o allure-report --clean"