style: remove unnecessary blank lines whitespace characters

This commit is contained in:
2026-08-07 16:59:37 +02:00
parent 203d222dc9
commit 3ad946dd7e
10 changed files with 27 additions and 27 deletions
@@ -200,7 +200,7 @@ const apply = function apply () {
opacity: 1;
}
}
@keyframes done-button-disappear {
0% {
opacity: 1;
@@ -173,15 +173,15 @@ describe('SettingsInput', () => {
await form.trigger('submit');
expect(form.classes('done-button-shown')).toBeFalsy();
await inputElement.setValue('a');
expect(form.classes('done-button-shown')).toBeTruthy();
const store = useSettingsStore();
store.set('input', 'a');
await nextTick();
expect(form.classes('done-button-shown')).toBeFalsy();
await inputElement.setValue('');
store.set('input', '');
await nextTick();
@@ -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';