File tree Expand file tree Collapse file tree 4 files changed +3
-3
lines changed Expand file tree Collapse file tree 4 files changed +3
-3
lines changed File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
import { expect , test } from '@playwright/test'
2
2
3
3
test ( 'should apply alias to subpath' , async ( { page } ) => {
4
- await page . goto ( 'alias/dir.html' )
4
+ await page . goto ( 'hooks/ alias/dir.html' )
5
5
await expect ( page . locator ( '#result' ) ) . toHaveText ( 'dir1 > c' )
6
6
} )
Original file line number Diff line number Diff line change 1
1
import { expect , test } from '@playwright/test'
2
2
3
- test ( 'longer alias shall override shorter ones' , async ( { page } ) => {
4
- await page . goto ( 'alias/override.html' )
3
+ test ( 'longer aliases should override shorter ones' , async ( { page } ) => {
4
+ await page . goto ( 'hooks/ alias/override.html' )
5
5
await expect ( page . locator ( '#a' ) ) . toHaveText ( 'dir2 > a' )
6
6
await expect ( page . locator ( '#b' ) ) . toHaveText ( 'dir2 > b' )
7
7
} )
You can’t perform that action at this time.
0 commit comments