From d3553e0efb3368400d92e42edc54656ff11ffd3f Mon Sep 17 00:00:00 2001 From: Cristen Jones Date: Thu, 12 Dec 2024 16:19:03 -0500 Subject: [PATCH] hack: test a different subway line with working departures --- integration/scenarios/search-for-a-subway-line.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration/scenarios/search-for-a-subway-line.js b/integration/scenarios/search-for-a-subway-line.js index 1e019ddfc3..0d8965c5be 100644 --- a/integration/scenarios/search-for-a-subway-line.js +++ b/integration/scenarios/search-for-a-subway-line.js @@ -8,12 +8,12 @@ exports.scenario = async ({ page, baseURL }) => { // The tab button takes me to the left side nav rather than the search results :(. await page .locator("input#search-global__input") - .pressSequentially("Blue Line"); + .pressSequentially("Orange Line"); await page.waitForSelector("div#search-results-container"); await page.locator("div.c-search-result__hit a").first().click(); await expect(page.locator("h1.schedule__route-name")).toHaveText( - "Blue Line", + "Orange Line", ); await page.waitForSelector("li.m-schedule-diagram__stop"); await page.waitForSelector("div.m-schedule-diagram__predictions");