mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
11 lines
277 B
JavaScript
11 lines
277 B
JavaScript
import {describeEtapi, postEtapi, putEtapiContent,getEtapi} from "../support/etapi";
|
|
|
|
|
|
|
|
describeEtapi("app_info", () => {
|
|
it("get", async () => {
|
|
const appInfo = await getEtapi("app-info");
|
|
expect(appInfo.clipperProtocolVersion).toEqual("1.0");
|
|
});
|
|
});
|