File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 6
6
"scripts" : {
7
7
"start" : " vite" ,
8
8
"build" : " vite build" ,
9
- "start:production " : " vite preview" ,
9
+ "preview " : " vite preview" ,
10
10
"test:browser" : " npx playwright test" ,
11
11
"test:browser:ui" : " npx playwright test --ui" ,
12
12
"test:browser:debug" : " npx playwright test --debug" ,
13
13
"test:browser:report" : " npx playwright show-report" ,
14
- "test:debug" : " start-server-and-test start:production http://localhost:4173 test:browser:debug" ,
15
- "test:ui" : " start-server-and-test start:production http://localhost:4173 test:browser:ui" ,
16
- "test" : " start-server-and-test start:production http://localhost:4173 test:browser"
14
+ "test:debug" : " start-server-and-test start http://localhost:8085 test:browser:debug" ,
15
+ "test:ui" : " start-server-and-test start http://localhost:8085 test:browser:ui" ,
16
+ "test" : " start-server-and-test start http://localhost:8085 test:browser"
17
17
},
18
18
"repository" : {
19
19
"type" : " git" ,
Original file line number Diff line number Diff line change 2
2
import { test , expect } from "@playwright/test" ;
3
3
4
4
test ( "loads an image" , async ( { page } ) => {
5
- await page . goto ( "http://localhost:4173 /" ) ;
5
+ await page . goto ( "http://localhost:8085 /" ) ;
6
6
7
7
await expect ( page ) . toHaveTitle ( / I T K - W a s m V i t e / ) ;
8
8
You can’t perform that action at this time.
0 commit comments