File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 3131 ~/.cache/ms-playwright
3232 key : ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}
3333 - name : Install Playwright Browsers for current OS and playwright version if not cached yet
34- run : npx playwright install --with-deps --only-shell chromium
34+ run : npx playwright install --with-deps chromium
3535 if : steps.playwright-cache.outputs.cache-hit != 'true'
3636
3737 - name : Run Playwright tests
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ let page: Page;
44
55// App navigation config
66const routes : { [ key : string ] : string } = {
7- base : "" ,
8- login : "login" ,
9- home : "home " ,
7+ base : "/ " ,
8+ login : "/ login" ,
9+ home : "/home1 " ,
1010} ;
1111
1212const qaId = ( id : string ) : string => `[data-qa-id="${ id } "]` ;
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ export default defineConfig({
4646 name : "chromium" ,
4747 use : {
4848 ...devices [ "Desktop Chrome" ] ,
49+ channel : 'chromium' ,
4950 } ,
5051 } ,
5152 ] ,
You can’t perform that action at this time.
0 commit comments