aboutsummaryrefslogtreecommitdiffstats
path: root/frontend
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-14 18:21:54 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-14 18:21:54 -0800
commitf9b22750dced97a974005593909077d09b1129b9 (patch)
tree63e0630ec23cab5f7b25d61ff5751d6e4d6230f0 /frontend
parent1413eca1f1dfea2fe125a5dc9bde293058cc3e03 (diff)
downloadneko-f9b22750dced97a974005593909077d09b1129b9.tar.gz
neko-f9b22750dced97a974005593909077d09b1129b9.tar.bz2
neko-f9b22750dced97a974005593909077d09b1129b9.zip
test: mock RSS feeds in E2E tests
Diffstat (limited to 'frontend')
-rw-r--r--frontend/tests/e2e.spec.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/tests/e2e.spec.ts b/frontend/tests/e2e.spec.ts
index 1fa10ce..2bdf478 100644
--- a/frontend/tests/e2e.spec.ts
+++ b/frontend/tests/e2e.spec.ts
@@ -25,7 +25,7 @@ test.describe('Neko Reader E2E', () => {
await expect(page).toHaveURL(/.*\/v2\/settings/);
// Add a feed
- const feedUrl = 'http://rss.cnn.com/rss/cnn_topstories.rss';
+ const feedUrl = 'http://localhost:9090/mock_feed.xml';
await page.fill('input[type="url"]', feedUrl);
await page.click('text=Add Feed');