Add settings validator unit test #113

Merged
jakob.scheid merged 20 commits from testing/settings-validator into main 2026-06-04 17:48:09 +02:00
Showing only changes of commit bf317eea35 - Show all commits
@@ -92,7 +92,7 @@ describe('assertString', () => {
[' '],
[' '],
[' ']
])('throws error for the value %s', ([ value ]) => {
])('throws an error for the value %s', ([ value ]) => {
expect(() => assertString(value)).throws(Error);
});
});