test: use describe in all test files

This commit is contained in:
2026-08-07 16:44:31 +02:00
parent c48b610e7a
commit 05cf1df307
@@ -15,8 +15,9 @@ limitations under the License.
*/
import { getSetting, getSettingRecursively } from '../getSetting.js';
import { test, expect } from 'vitest';
import { describe, test, expect } from 'vitest';
describe('getSetting', () => {
test.for([
({ settings: [], name: '', expected: undefined }),
({ settings: [], name: 'a', expected: undefined }),
@@ -524,3 +525,4 @@ test.for([
])('returns $expected', ({ settings, path, expected }) => {
expect(getSettingRecursively(path, settings)).toStrictEqual(expected);
});
});