summaryrefslogtreecommitdiffstats
path: root/ui/src/api_tests/api.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/api_tests/api.spec.ts')
-rw-r--r--ui/src/api_tests/api.spec.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/src/api_tests/api.spec.ts b/ui/src/api_tests/api.spec.ts
index cc240476..ed97174e 100644
--- a/ui/src/api_tests/api.spec.ts
+++ b/ui/src/api_tests/api.spec.ts
@@ -98,7 +98,9 @@ describe('main', () => {
describe('follow_accept', () => {
test('/u/lemmy_alpha follows and accepts lemmy_beta/c/main', async () => {
// Make sure lemmy_beta/c/main is cached on lemmy_alpha
- let searchUrl = `${lemmyAlphaApiUrl}/search?q=http://lemmy_beta:8550/c/main&type_=All&sort=TopAll`;
+ // Use short-hand search url
+ let searchUrl = `${lemmyAlphaApiUrl}/search?q=!main@lemmy_beta:8550&type_=All&sort=TopAll`;
+
let searchResponse: SearchResponse = await fetch(searchUrl, {
method: 'GET',
}).then(d => d.json());