From 1418e52cbf2b3e4433bd31e002726bfb77c7f376 Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Tue, 2 Jun 2026 22:46:35 +0200 Subject: [PATCH] test(current-language-util): add test boilerplate --- src/utils/__tests__/currentLanguage.test.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/utils/__tests__/currentLanguage.test.js diff --git a/src/utils/__tests__/currentLanguage.test.js b/src/utils/__tests__/currentLanguage.test.js new file mode 100644 index 0000000..2895a5d --- /dev/null +++ b/src/utils/__tests__/currentLanguage.test.js @@ -0,0 +1,21 @@ +/* +Copyright 2026 Seekra + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +import { test } from 'vitest'; + +test.for([ +])('returns the language \'%s\'', ([locale, language]) => { +}); \ No newline at end of file