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