mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 02:16:05 +01:00 
			
		
		
		
	fix(test/server): dayjs initialization issue
This commit is contained in:
		| @@ -1,6 +1,7 @@ | ||||
| import { beforeAll } from "vitest"; | ||||
| import i18next from "i18next"; | ||||
| import { join } from "path"; | ||||
| import dayjs from "dayjs"; | ||||
|  | ||||
| beforeAll(async () => { | ||||
|     // Initialize the translations manually to avoid any side effects. | ||||
| @@ -15,4 +16,8 @@ beforeAll(async () => { | ||||
|             loadPath: join(__dirname, "../src/assets/translations/{{lng}}/{{ns}}.json") | ||||
|         } | ||||
|     }); | ||||
|  | ||||
|     // Initialize dayjs | ||||
|     await import("dayjs/locale/en.js"); | ||||
|     dayjs.locale("en"); | ||||
| }); | ||||
|   | ||||
| @@ -36,11 +36,11 @@ export async function initializeTranslations() { | ||||
|     } catch (err) { | ||||
|         console.warn(`Could not load locale ${dayjsLocale}`, err); | ||||
|     } | ||||
|     dayjs.locale(dayjsLocale); | ||||
| } | ||||
|  | ||||
| export function ordinal(date: Dayjs) { | ||||
|     return dayjs(date) | ||||
|         .locale(dayjsLocale) | ||||
|         .format("Do"); | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user