diff --git a/test/screenshots/darwin/app-basic.png b/test/screenshots/darwin/app-basic.png index ca34124d..6c2b8926 100644 Binary files a/test/screenshots/darwin/app-basic.png and b/test/screenshots/darwin/app-basic.png differ diff --git a/test/screenshots/darwin/play-torrent-wired-2.png b/test/screenshots/darwin/play-torrent-wired-2.png index 0f0e090d..47f5264d 100644 Binary files a/test/screenshots/darwin/play-torrent-wired-2.png and b/test/screenshots/darwin/play-torrent-wired-2.png differ diff --git a/test/screenshots/darwin/play-torrent-wired-3.png b/test/screenshots/darwin/play-torrent-wired-3.png index 3fe120b9..c08acdce 100644 Binary files a/test/screenshots/darwin/play-torrent-wired-3.png and b/test/screenshots/darwin/play-torrent-wired-3.png differ diff --git a/test/screenshots/darwin/play-torrent-wired-4.png b/test/screenshots/darwin/play-torrent-wired-4.png index 3fe120b9..c08acdce 100644 Binary files a/test/screenshots/darwin/play-torrent-wired-4.png and b/test/screenshots/darwin/play-torrent-wired-4.png differ diff --git a/test/screenshots/darwin/play-torrent-wired-5.png b/test/screenshots/darwin/play-torrent-wired-5.png index 3fe120b9..c08acdce 100644 Binary files a/test/screenshots/darwin/play-torrent-wired-5.png and b/test/screenshots/darwin/play-torrent-wired-5.png differ diff --git a/test/screenshots/darwin/play-torrent-wired-fullscreen.png b/test/screenshots/darwin/play-torrent-wired-fullscreen.png index f11590b2..97b16de8 100644 Binary files a/test/screenshots/darwin/play-torrent-wired-fullscreen.png and b/test/screenshots/darwin/play-torrent-wired-fullscreen.png differ diff --git a/test/screenshots/darwin/play-torrent-wired-list.png b/test/screenshots/darwin/play-torrent-wired-list.png index e4b8d2bf..5c3f9ea2 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/screenshots/darwin/play-torrent-wired.png b/test/screenshots/darwin/play-torrent-wired.png index 4caf894a..a707104e 100644 Binary files a/test/screenshots/darwin/play-torrent-wired.png and b/test/screenshots/darwin/play-torrent-wired.png differ diff --git a/test/screenshots/darwin/prefs-basic.png b/test/screenshots/darwin/prefs-basic.png index 77abfab4..f3823e99 100644 Binary files a/test/screenshots/darwin/prefs-basic.png and b/test/screenshots/darwin/prefs-basic.png differ diff --git a/test/screenshots/darwin/torrent-list-cosmos-hover.png b/test/screenshots/darwin/torrent-list-cosmos-hover.png deleted file mode 100644 index e47a6367..00000000 Binary files a/test/screenshots/darwin/torrent-list-cosmos-hover.png and /dev/null differ diff --git a/test/screenshots/darwin/torrent-list-download-path-missing.png b/test/screenshots/darwin/torrent-list-download-path-missing.png index 0ee02e10..a0bcca4d 100644 Binary files a/test/screenshots/darwin/torrent-list-download-path-missing.png and b/test/screenshots/darwin/torrent-list-download-path-missing.png differ diff --git a/test/screenshots/darwin/torrent-list-download.png b/test/screenshots/darwin/torrent-list-download.png new file mode 100644 index 00000000..22e9d4dc Binary files /dev/null and b/test/screenshots/darwin/torrent-list-download.png differ diff --git a/test/screenshots/darwin/torrent-list-hover-download.png b/test/screenshots/darwin/torrent-list-hover-download.png deleted file mode 100644 index 6b5874b6..00000000 Binary files a/test/screenshots/darwin/torrent-list-hover-download.png and /dev/null differ diff --git a/test/screenshots/darwin/torrent-list-hover.png b/test/screenshots/darwin/torrent-list-hover.png deleted file mode 100644 index e691290c..00000000 Binary files a/test/screenshots/darwin/torrent-list-hover.png and /dev/null differ diff --git a/test/screenshots/darwin/torrent-list.png b/test/screenshots/darwin/torrent-list.png new file mode 100644 index 00000000..1d9e02f0 Binary files /dev/null and b/test/screenshots/darwin/torrent-list.png differ diff --git a/test/test-add-torrent.js b/test/test-add-torrent.js index c8d7bd3e..12a60569 100644 --- a/test/test-add-torrent.js +++ b/test/test-add-torrent.js @@ -40,10 +40,9 @@ test('create-torrent', function (t) { announce: [ 'udp://explodie.org:6969', 'udp://tracker.coppersurfer.tk:6969', + 'udp://tracker.empire-js.us:1337', 'udp://tracker.leechers-paradise.org:6969', - 'udp://tracker.openbittorrent.com:80', 'udp://tracker.opentrackr.org:1337', - 'udp://zer0day.ch:1337', 'wss://tracker.btorrent.xyz', 'wss://tracker.fastcast.nz', 'wss://tracker.openwebtorrent.com' diff --git a/test/test-torrent-list.js b/test/test-torrent-list.js index b3b8fe5e..3ae6fac3 100644 --- a/test/test-torrent-list.js +++ b/test/test-torrent-list.js @@ -31,22 +31,20 @@ test('torrent-list: start, stop, and delete torrents', function (t) { const app = setup.createApp() setup.waitForLoad(app, t) .then(() => app.client.waitUntilTextExists('.torrent-list', 'Big Buck Bunny')) - // Mouse over the first torrent - .then(() => app.client.moveToObject('.torrent')) - .then(() => setup.screenshotCreateOrCompare(app, t, 'torrent-list-hover')) + .then(() => setup.screenshotCreateOrCompare(app, t, 'torrent-list')) // Click download on the first torrent, start downloading .then(() => app.client.click('.download input')) .then(() => app.client.waitUntilTextExists('.torrent-list', '276 MB')) .then(() => setup.screenshotCreateOrCompare(app, t, 'torrent-list-start-download')) // Click download on the first torrent again, stop downloading .then(() => app.client.click('.download input')) - .then(() => setup.screenshotCreateOrCompare(app, t, 'torrent-list-hover-download')) + .then(() => setup.screenshotCreateOrCompare(app, t, 'torrent-list-download')) // Click delete on the first torrent .then(() => app.client.click('.icon.delete')) .then(() => setup.screenshotCreateOrCompare(app, t, 'torrent-list-delete-prompt')) // Click cancel on the resulting confirmation dialog. Should be same as before. .then(() => app.client.click('.control.cancel')) - .then(() => setup.screenshotCreateOrCompare(app, t, 'torrent-list-hover')) + .then(() => setup.screenshotCreateOrCompare(app, t, 'torrent-list')) // Click delete on the first torrent again .then(() => app.client.click('.icon.delete')) .then(() => setup.screenshotCreateOrCompare(app, t, 'torrent-list-delete-prompt')) @@ -63,9 +61,6 @@ test('torrent-list: expand torrent, unselect file', function (t) { const app = setup.createApp() setup.waitForLoad(app, t) .then(() => app.client.waitUntilTextExists('.torrent-list', 'Big Buck Bunny')) - // Mouse over the torrent - .then(() => app.client.moveToObject('#torrent-cosmos')) - .then(() => setup.screenshotCreateOrCompare(app, t, 'torrent-list-cosmos-hover')) // Click on the torrent, expand .then(() => app.client.click('#torrent-cosmos')) .then(() => setup.screenshotCreateOrCompare(app, t, 'torrent-list-cosmos-expand'))