style: remove unnecessary whitespace

This commit is contained in:
2026-08-08 15:23:28 +02:00
parent 7c082ba696
commit 9d252d5e62
12 changed files with 28 additions and 30 deletions
@@ -89,7 +89,7 @@ describe('Switch', () => {
const switchElement = wrapper.find('.switch-wrapper');
expect(switchElement.classes('enabled')).toBeFalsy();
store.set('switch', true);
await nextTick();
expect(switchElement.classes('enabled')).toBeTruthy();
@@ -97,21 +97,21 @@ describe('Switch', () => {
test('toggles value in store', async () => {
const wrapper = getWrapper();
const switchElement = wrapper.find('.switch-wrapper');
const store = useSettingsStore();
expect(store.get('switch')).toBeUndefined();
switchElement.trigger('click');
await nextTick();
expect(store.get('switch')).toBe(true);
switchElement.trigger('click');
await nextTick();
expect(store.get('switch')).toBe(false);
});
test('shows correct translation', () => {
const translation = 'Switch';