1
0
Fork 0
mirror of synced 2024-09-20 03:08:18 +12:00

Fix environment test.

This commit is contained in:
Sam Rose 2024-08-27 14:40:15 +01:00
parent 265000f7e1
commit 43560b3269
No known key found for this signature in database

View file

@ -9,6 +9,7 @@ export class EnvironmentAPI extends TestAPI {
getEnvironment = () => {
return this.request
.get(`/api/system/environment`)
.set(this.config.defaultHeaders())
.expect("Content-Type", /json/)
.expect(200)
}