Skip to content

Commit

Permalink
skip tests for UI that is due to change
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane Osbourne committed Jul 9, 2024
1 parent d8b1d87 commit 0ad7f37
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/special-pages/tests/duckplayer.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ test.describe('duckplayer iframe', () => {

test.describe('duckplayer toolbar', () => {
test('hides toolbar based on user activity', async ({ page }, workerInfo) => {
test.skip(isAndroid(workerInfo))
const duckplayer = DuckPlayerPage.create(page, workerInfo)
await duckplayer.openWithVideoID()
await duckplayer.hasLoadedIframe()
Expand All @@ -64,6 +65,7 @@ test.describe('duckplayer toolbar', () => {
await duckplayer.toolbarIsVisible()
})
test('tooltip shown on hover', async ({ page }, workerInfo) => {
test.skip(isAndroid(workerInfo))
const duckplayer = DuckPlayerPage.create(page, workerInfo)
await duckplayer.openWithVideoID()
await duckplayer.hasLoadedIframe()
Expand All @@ -77,6 +79,7 @@ test.describe('duckplayer toolbar', () => {
await duckplayer.infoTooltipIsHidden()
})
test('clicking on cog icon opens settings', async ({ page }, workerInfo) => {
test.skip(isAndroid(workerInfo))
const duckplayer = DuckPlayerPage.create(page, workerInfo)
await duckplayer.openWithVideoID()
await duckplayer.hasLoadedIframe()
Expand All @@ -85,6 +88,7 @@ test.describe('duckplayer toolbar', () => {
await duckplayer.opensSettingsInNewTab()
})
test('opening in youtube', async ({ page }, workerInfo) => {
test.skip(isAndroid(workerInfo))
const duckplayer = DuckPlayerPage.create(page, workerInfo)
await duckplayer.openWithVideoID()
await duckplayer.hasLoadedIframe()
Expand Down

0 comments on commit 0ad7f37

Please sign in to comment.