tests: add tests for google keep backup import

This commit is contained in:
ammarahm-ed
2021-08-27 08:51:41 +05:00
parent 033ab2276e
commit 58da719a30
3 changed files with 60 additions and 0 deletions

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@@ -0,0 +1,8 @@
const keep = require("../providers/keep");
const utils = require("./utils");
test("convert google keep backup", () => {
let file = utils.getFile("takeout.zip");
expect(keep.convert([file])).toMatchSnapshot("keep-backup");
});