enable jasmine test runs

This commit is contained in:
Alex
2024-05-03 21:18:20 +02:00
parent a68b75f069
commit e7f11d6687
14 changed files with 413 additions and 375 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);
});
});