Skip to content

Commit

Permalink
Fix USES_HOOKS usage
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-s committed Aug 11, 2020
1 parent 3bb284d commit 845456e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/screencast.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ registerFixture('firefox', async ({playwright}, test) => {
}
});

it.fail(CHROMIUM || USES_HOOKS)('should capture static page', async({page, persistentDirectory, firefox, toImpl}) => {
it.fail(CHROMIUM).skip(USES_HOOKS)('should capture static page', async({page, persistentDirectory, firefox, toImpl}) => {
const videoFile = path.join(persistentDirectory, 'v.webm');
await page.evaluate(() => document.body.style.backgroundColor = 'red');
await toImpl(page)._delegate.startVideoRecording({outputFile: videoFile, width: 640, height: 480});
Expand Down

0 comments on commit 845456e

Please sign in to comment.