1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-14 18:27:44 +02:00

fixed tests

This commit is contained in:
Laurent Cozic 2021-11-15 19:27:31 +00:00
parent e97bb78ce4
commit fc1c974c79

View File

@ -41,7 +41,10 @@ describe('app.reducer', function() {
name: 'setPassword',
});
expect(newState.dialogs).toEqual([{ name: 'syncWizard' }, { name: 'setPassword' }]);
expect(newState.dialogs).toEqual([
{ name: 'syncWizard', props: {} },
{ name: 'setPassword', props: {} },
]);
});
});