mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
13 lines
332 B
JavaScript
13 lines
332 B
JavaScript
const {
|
|
describeEtapi, postEtapi,
|
|
putEtapiContent
|
|
} = require("../support/etapi");
|
|
const {getEtapi} = require("../support/etapi.js");
|
|
|
|
describeEtapi("app_info", () => {
|
|
it("get", async () => {
|
|
const appInfo = await getEtapi("app-info");
|
|
expect(appInfo.clipperProtocolVersion).toEqual("1.0");
|
|
});
|
|
});
|