mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
9 lines
276 B
JavaScript
9 lines
276 B
JavaScript
import {describeEtapi, getEtapi, postEtapi,putEtapiContent} from "../support/etapi";
|
|
|
|
describeEtapi("backup", () => {
|
|
it("create", async () => {
|
|
const response = await putEtapiContent("backup/etapi_test");
|
|
expect(response.status).toEqual(204);
|
|
});
|
|
});
|