tests: Align with original repo

Apparently upstream does not run all the tests, the beforeAll() is not
even executed. On our side it was, causing a lot of errors related to
timeouts.
This commit is contained in:
Elian Doran
2024-07-15 22:24:14 +03:00
parent eff6ca3365
commit e393914b94
6 changed files with 111 additions and 152 deletions

8
spec/etapi/backup.ts Normal file
View File

@@ -0,0 +1,8 @@
import etapi = require("../support/etapi");
etapi.describeEtapi("backup", () => {
it("create", async () => {
const response = await etapi.putEtapiContent("backup/etapi_test");
expect(response.status).toEqual(204);
});
});