enable jasmine test runs

This commit is contained in:
Alex
2024-05-03 21:18:20 +02:00
parent a68b75f069
commit e7f11d6687
14 changed files with 413 additions and 375 deletions

8
spec/etapi/app_info.ts Normal file
View File

@@ -0,0 +1,8 @@
import etapi = require("../support/etapi");
etapi.describeEtapi("app_info", () => {
it("get", async () => {
const appInfo = await etapi.getEtapi("app-info");
expect(appInfo.clipperProtocolVersion).toEqual("1.0");
});
});