test(settings): update test description for the unit test for the settings validator assertString function for test cases that should throw an error

This commit is contained in:
2026-06-04 14:02:48 +02:00
parent e0419d57cc
commit c1ce580ed7
@@ -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);
});
});