chore(web): use development lang for tests (#10025)

This commit is contained in:
Michel Heusschen 2024-06-07 17:12:39 +02:00 committed by GitHub
parent 3e118793de
commit d5f3d98dfc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 7 additions and 24 deletions

View file

@ -1 +1,6 @@
import '@testing-library/jest-dom';
import { init } from 'svelte-i18n';
beforeAll(async () => {
await init({ fallbackLocale: 'dev' });
});