summaryrefslogtreecommitdiffstats
path: root/ui/src/api_tests
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-05-01 10:34:41 -0400
committerDessalines <tyhou13@gmx.com>2020-05-01 10:34:41 -0400
commit75c6c8521b2c45e11920ce86a4bc898565e93fbd (patch)
tree83abb732e3ed162dae634009ce43e064b97299a8 /ui/src/api_tests
parent36d0e34668b94a955306a4b83947deb1f10689f2 (diff)
parent38cdfdf7e0ee1db1e315c150a1b375f9245a95db (diff)
Merge branch 'shorthand_apub_id_searching' into federation
Diffstat (limited to 'ui/src/api_tests')
-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 ffc33888..7121d038 100644
--- a/ui/src/api_tests/api.spec.ts
+++ b/ui/src/api_tests/api.spec.ts
@@ -95,7 +95,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());