Skip to content

Commit c1fc31d

Browse files
committed
WEB-1029: [Playwright] Add create-client form-validation E2E spec
1 parent 4493297 commit c1fc31d

5 files changed

Lines changed: 502 additions & 115 deletions

File tree

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"build": "node version.js && npm run env -s && ng build --configuration production --output-hashing=none",
1717
"build:prod": "node version.js && node --max-old-space-size=16384 ./node_modules/@angular/cli/bin/ng build --configuration production --output-hashing=none --base-href=/web-app/",
1818
"start": "npm run env -s && ng serve --proxy-config proxy.conf.js",
19+
"start:local": "npm run env -s && ng serve --proxy-config proxy.localhost.conf.js",
1920
"serve:dev": "npm run env -s && ng serve --source-map",
2021
"serve:sw": "npm run build -s && npx http-server ./dist -p 4200",
2122
"lint": "eslint . && stylelint \"src/**/*.scss\" && prettier . --check && htmlhint \"src\" --config .htmlhintrc",

playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ export default defineConfig({
223223
webServer: process.env.CI
224224
? undefined
225225
: {
226-
command: 'npm run start',
226+
command: 'npm run start:local',
227227
url: 'http://localhost:4200',
228228
reuseExistingServer: true,
229229
timeout: 180000

0 commit comments

Comments
 (0)