1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-08-10 22:11:50 +02:00

Chore: CI: Fix plugin-related test failure (#12482)

This commit is contained in:
Henry Heino
2025-06-11 15:37:34 -07:00
committed by GitHub
parent 7330efceaf
commit c8cbe7271e

View File

@@ -351,7 +351,7 @@ describe('services_PluginService', () => {
joplin.plugins.register({
onStart: async function() {
const dataDir = await joplin.plugins.dataDir();
joplin.data.post(['folders'], null, { title: JSON.stringify(dataDir) });
await joplin.data.post(['folders'], null, { title: JSON.stringify(dataDir) });
},
});
`);