1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-24 23:26:50 +02:00

Tools: Replace Jasmine with Jest to run tests

This commit is contained in:
Laurent Cozic
2020-11-10 15:59:30 +00:00
parent c249333e2a
commit 06f2fda946
37 changed files with 4275 additions and 334 deletions

View File

@ -287,7 +287,7 @@ function shimInit(sharp = null, keytar = null) {
const newNote = Object.assign({}, note, {
body: newBody,
});
return await Note.save(newNote);
return Note.save(newNote);
};
shim.imageFromDataUrl = async function(imageDataUrl, filePath, options = null) {