From 63980bc0db83c9b33f31535a2c5b8e84a82c1269 Mon Sep 17 00:00:00 2001 From: Yury Yasuchenya Date: Mon, 4 Nov 2024 15:46:14 +0100 Subject: [PATCH] Fixed client tests --- client-html/src/dev/mock/api/dashboard/DashboardApiMock.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-html/src/dev/mock/api/dashboard/DashboardApiMock.ts b/client-html/src/dev/mock/api/dashboard/DashboardApiMock.ts index eef2ecb8e9..cf006e8d2a 100644 --- a/client-html/src/dev/mock/api/dashboard/DashboardApiMock.ts +++ b/client-html/src/dev/mock/api/dashboard/DashboardApiMock.ts @@ -10,7 +10,7 @@ export function dashboardApiMock(mock) { this.api.onPut("/v1/user/preference/category").reply(config => promiseResolve(config, {})); - this.api.onGet("https://ish-oncourse-sttrianians.s3.ap-southeast-2.amazonaws.com/ae3c4a66-a50e-4e85-b5f6-da0b9cec712d").reply(config => promiseResolve(config, JSON.parse(this.db.getDashboardFeeds()))); + this.api.onGet("https://oncourse-news.s3.ap-southeast-2.amazonaws.com/news.json").reply(config => promiseResolve(config, JSON.parse(this.db.getDashboardFeeds()))); this.api.onGet("/v1/dashboard/search").reply(config => promiseResolve(config, this.db.getDashboardSearchResult())); }