Fix rest api integration tests (#11645)

as title
This commit is contained in:
martmull
2025-04-18 15:23:36 +02:00
committed by GitHub
parent 16bd0425e0
commit fba4192d4b
10 changed files with 179 additions and 236 deletions

View File

@ -6,6 +6,7 @@ declare module '@jest/types' {
APP_PORT: number;
ADMIN_ACCESS_TOKEN: string;
EXPIRED_ACCESS_TOKEN: string;
INVALID_ACCESS_TOKEN: string;
MEMBER_ACCESS_TOKEN: string;
GUEST_ACCESS_TOKEN: string;
}
@ -16,6 +17,7 @@ declare global {
const APP_PORT: number;
const ADMIN_ACCESS_TOKEN: string;
const EXPIRED_ACCESS_TOKEN: string;
const INVALID_ACCESS_TOKEN: string;
const MEMBER_ACCESS_TOKEN: string;
const GUEST_ACCESS_TOKEN: string;
}