1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-11 18:24:43 +02:00

Finished removing prettier

This commit is contained in:
Laurent Cozic 2018-03-10 15:34:29 +00:00
parent 55c5ddedf4
commit 3370b57134
2 changed files with 1 additions and 15 deletions

View File

@ -113,18 +113,13 @@ describe('Synchronizer', function() {
await Note.save({ title: "un", parent_id: folder.id });
let all = await allItems();
await localItemsSameAsRemote(all, expect);
}));
it("should update remote items", asyncTest(async () => {
let folder = await Folder.save({ title: "folder1" });
let note = await Note.save({ title: "un", parent_id: folder.id });
await synchronizer().start();
await localItemsSameAsRemote(all, expect);
}));
it('should update remote item', asyncTest(async () => {
it('should update remote items', asyncTest(async () => {
let folder = await Folder.save({ title: "folder1" });
let note = await Note.save({ title: "un", parent_id: folder.id });
await synchronizer().start();

View File

@ -71,13 +71,4 @@
"path": "D:\\Docs\\PROGS\\Node\\tkwidgets"
}
],
"settings": {
"js_prettier": {
"auto_format_on_save": false,
"auto_format_on_save_requires_prettier_config": true,
"additional_cli_args": {
"--config": "prettier.config.js",
},
}
}
}