Skip to content

Commit

Permalink
fix flint
Browse files Browse the repository at this point in the history
  • Loading branch information
aslushnikov committed Sep 14, 2023
1 parent 41cbee5 commit 62a1335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/library/video.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ it.describe('screencast', () => {
const page = await context.newPage();
const videoPath = await page.video()!.path();
await context.close();
expect(fs.existsSync(await page.video()!.path())).toBeTruthy();
expect(fs.existsSync(videoPath)).toBeTruthy();
});

it('should expose video path blank popup', async ({ browser }, testInfo) => {
Expand Down

0 comments on commit 62a1335

Please sign in to comment.