diff --git a/test/screenshots/darwin/play-torrent-wired-list.png b/test/screenshots/darwin/play-torrent-wired-list.png index 0e92c295..5bd200d7 100644 Binary files a/test/screenshots/darwin/play-torrent-wired-list.png and b/test/screenshots/darwin/play-torrent-wired-list.png differ diff --git a/test/test-audio.js b/test/test-audio.js index a3c43cea..9dc0d8da 100644 --- a/test/test-audio.js +++ b/test/test-audio.js @@ -22,6 +22,7 @@ test('audio-streaming', function (t) { // Click next .then(() => app.client.click('.skip-next')) .then(() => app.client.waitUntilTextExists('.player', 'David Byrne')) + .then(() => setup.wait(5e3)) .then(() => app.client.moveToObject('.letterbox')) .then(() => app.webContents.executeJavaScript('dispatch("playPause")')) .then(() => app.webContents.executeJavaScript('dispatch("skipTo", 2)')) @@ -31,6 +32,7 @@ test('audio-streaming', function (t) { .then(() => app.webContents.executeJavaScript('dispatch("playPause")')) // Play past the end of the song, then pause after the start of the next song by Zap Mama .then(() => app.client.waitUntilTextExists('.player', 'Zap Mama'), 15e3) + .then(() => setup.wait(5e3)) .then(() => app.webContents.executeJavaScript('dispatch("playPause")')) .then(() => app.webContents.executeJavaScript('dispatch("skipTo", 2)')) .then(() => setup.screenshotCreateOrCompare(app, t, 'play-torrent-wired-3'))