mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
47f95cb294
Co-authored-by: Helmut K. C. Tessarek <tessarek@evermeet.cx> Co-authored-by: Henry Heino <46334387+personalizedrefrigerator@users.noreply.github.com>
11 lines
351 B
TypeScript
11 lines
351 B
TypeScript
import allLanguages from '../markdown/codeBlockLanguages/allLanguages';
|
|
|
|
// Ensure languages we use are loaded. Without this, tests may randomly fail (LanguageDescriptions
|
|
// are loaded asynchronously, in the background).
|
|
const loadLanguages = async () => {
|
|
for (const lang of allLanguages) {
|
|
await lang.load();
|
|
}
|
|
};
|
|
export default loadLanguages;
|