style: ensure semicolons at line ends

This commit is contained in:
2026-08-09 13:09:39 +02:00
committed by Gitea
parent 18ba0f2a70
commit dc60b968e7
14 changed files with 33 additions and 33 deletions
@@ -59,5 +59,5 @@ describe('settingsPage', () => {
])('returns $expected', async ({ path, expected }) => {
expect(getSettingsPagePathSegments(path)).toStrictEqual(expected);
});
})
})
});
});
@@ -527,8 +527,8 @@ describe('settingsValidator', () => {
]
} }
])('throws error', ({ settings }) => {
expect(() => validateSettingsConfig(settings)).toThrow(Error)
})
expect(() => validateSettingsConfig(settings)).toThrow(Error);
});
});
describe('validateEntry', () => {