more tests

This commit is contained in:
zadam
2023-11-01 00:41:35 +01:00
parent 7d80fe19e0
commit 0efc42081d
6 changed files with 80 additions and 5 deletions

12
spec/etapi/app_info.js Normal file
View File

@@ -0,0 +1,12 @@
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");
});
});