Compare commits

...

3 Commits

Author SHA1 Message Date
Aidan Timson 7a607a63c5 Add test:e2e:app:dev 2026-06-25 12:09:40 +01:00
Aidan Timson 39dc34c688 Stop browser open 2026-06-25 12:07:45 +01:00
Aidan Timson dc2b2b44d6 Add test:e2e:app:dev to not need to build for every test run 2026-06-25 12:07:31 +01:00
3 changed files with 11 additions and 0 deletions
+1
View File
@@ -240,6 +240,7 @@ gulp.task("rspack-dev-server-e2e-test-app", () =>
),
contentBase: paths.e2eTestApp_output_root,
port: 8095,
open: false,
})
);
+1
View File
@@ -28,6 +28,7 @@
"test:e2e:show-report": "yarn playwright show-report test/e2e/reports/combined",
"test:e2e:demo": "playwright test --config test/e2e/playwright.demo.config.ts",
"test:e2e:app": "playwright test --config test/e2e/playwright.app.config.ts",
"test:e2e:app:dev": "test/e2e/app/script/develop_app",
"test:e2e:gallery": "playwright test --config test/e2e/playwright.gallery.config.ts"
},
"author": "Paulus Schoutsen <Paulus@PaulusSchoutsen.nl> (http://paulusschoutsen.nl)",
+9
View File
@@ -0,0 +1,9 @@
#!/bin/sh
# Develop the e2e test app
# Stop on errors
set -e
cd "$(dirname "$0")/../../../.."
./node_modules/.bin/gulp develop-e2e-test-app