mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-03 11:56:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			758 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			758 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { Application } from "express";
 | 
						|
import { beforeAll, describe, expect, it } from "vitest";
 | 
						|
import supertest from "supertest";
 | 
						|
import { login } from "./utils.js";
 | 
						|
import config from "../../src/services/config.js";
 | 
						|
 | 
						|
let app: Application;
 | 
						|
let token: string;
 | 
						|
 | 
						|
const USER = "etapi";
 | 
						|
 | 
						|
describe("etapi/backup", () => {
 | 
						|
    beforeAll(async () => {
 | 
						|
        config.General.noAuthentication = false;
 | 
						|
        const buildApp = (await (import("../../src/app.js"))).default;
 | 
						|
        app = await buildApp();
 | 
						|
        token = await login(app);
 | 
						|
    });
 | 
						|
 | 
						|
    it("backup works", async () => {
 | 
						|
        const response = await supertest(app)
 | 
						|
            .put("/etapi/backup/etapi_test")
 | 
						|
            .auth(USER, token, { "type": "basic"})
 | 
						|
            .expect(201);
 | 
						|
    });
 | 
						|
});
 |