test: server-info e2e tests (#3948)

This commit is contained in:
Jason Rasmussen
2023-09-01 22:01:54 -04:00
committed by GitHub
parent b7fd5dcb4a
commit 4e5bf7ae2e
7 changed files with 176 additions and 7 deletions

View File

@@ -4,6 +4,11 @@ export const errorStub = {
statusCode: 401,
message: 'Authentication required',
},
forbidden: {
error: 'Forbidden',
statusCode: 403,
message: expect.any(String),
},
wrongPassword: {
error: 'Bad Request',
statusCode: 400,