From 84e32b13469e05403854019f54cbb12f1af60452 Mon Sep 17 00:00:00 2001 From: Gabriel de Perthuis Date: Sun, 20 Nov 2022 17:49:12 +0100 Subject: [PATCH] Update expected page titles in notification tests --- tests/spec/102-notifications.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/spec/102-notifications.js b/tests/spec/102-notifications.js index bd5ba0cf..146bd29c 100644 --- a/tests/spec/102-notifications.js +++ b/tests/spec/102-notifications.js @@ -12,7 +12,7 @@ test('shows unread notification', async t => { await loginAsFoobar(t) await t .expect(notificationsNavButton.getAttribute('aria-label')).eql('Notifications') - .expect(getTitleText()).eql('localhost:3000 · Home') + .expect(getTitleText()).eql('Home · localhost:3000') .expect(getNthStatusContent(1).innerText).contains('somebody please favorite this to validate me', { timeout: 20000 }) @@ -21,17 +21,17 @@ test('shows unread notification', async t => { .expect(notificationsNavButton.getAttribute('aria-label')).eql('Notifications (1 notification)', { timeout: 20000 }) - .expect(getTitleText()).eql('(1) localhost:3000 · Home') + .expect(getTitleText()).eql('(1) Home · localhost:3000') .click(notificationsNavButton) .expect(getUrl()).contains('/notifications') .expect(notificationsNavButton.getAttribute('aria-label')).eql('Notifications (current page)') - .expect(getTitleText()).eql('localhost:3000 · Notifications') + .expect(getTitleText()).eql('Notifications · localhost:3000') .expect(getNthStatus(1).innerText).contains('somebody please favorite this to validate me') .expect(getNthStatus(1).innerText).match(/admin\s+favorited your toot/) await t .click(homeNavButton) .expect(notificationsNavButton.getAttribute('aria-label')).eql('Notifications') - .expect(getTitleText()).eql('localhost:3000 · Home') + .expect(getTitleText()).eql('Home · localhost:3000') }) test('shows unread notifications, more than one', async t => { @@ -39,7 +39,7 @@ test('shows unread notifications, more than one', async t => { await loginAsFoobar(t) await t .expect(notificationsNavButton.getAttribute('aria-label')).eql('Notifications') - .expect(getTitleText()).eql('localhost:3000 · Home') + .expect(getTitleText()).eql('Home · localhost:3000') .expect(getNthStatusContent(1).innerText).contains('I need lots of favorites on this one', { timeout: 20000 }) @@ -49,14 +49,14 @@ test('shows unread notifications, more than one', async t => { .expect(notificationsNavButton.getAttribute('aria-label')).eql('Notifications (2 notifications)', { timeout: 20000 }) - .expect(getTitleText()).eql('(2) localhost:3000 · Home') + .expect(getTitleText()).eql('(2) Home · localhost:3000') .click(notificationsNavButton) .expect(getUrl()).contains('/notifications') .expect(notificationsNavButton.getAttribute('aria-label')).eql('Notifications (current page)') - .expect(getTitleText()).eql('localhost:3000 · Notifications') + .expect(getTitleText()).eql('Notifications · localhost:3000') .expect(getNthStatus(1).innerText).contains('I need lots of favorites on this one') await t .click(homeNavButton) .expect(notificationsNavButton.getAttribute('aria-label')).eql('Notifications') - .expect(getTitleText()).eql('localhost:3000 · Home') + .expect(getTitleText()).eql('Home · localhost:3000') })