chore: AdminUrlUtil: add ?limit=10 to list view url generator, as it would automatically redirect anyways. Had potential for flaky tests

This commit is contained in:
Alessio Gravili
2024-03-22 15:59:03 -04:00
parent bc4f6aaf9c
commit 4c109a467f

View File

@@ -10,7 +10,7 @@ export class AdminUrlUtil {
constructor(serverURL: string, slug: string) {
this.account = `${serverURL}/admin/account`
this.admin = `${serverURL}/admin`
this.list = `${this.admin}/collections/${slug}`
this.list = `${this.admin}/collections/${slug}?limit=10`
this.create = `${this.list}/create`
}