mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00

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.
9 lines
235 B
TypeScript
9 lines
235 B
TypeScript
import etapi = require("../support/etapi");
|
|
|
|
etapi.describeEtapi("backup", () => {
|
|
it("create", async () => {
|
|
const response = await etapi.putEtapiContent("backup/etapi_test");
|
|
expect(response.status).toEqual(204);
|
|
});
|
|
});
|