mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-15 13:43:39 +01:00
10 lines
298 B
TypeScript
10 lines
298 B
TypeScript
import { describe, expect, it } from 'vitest';
|
|
|
|
describe('formatDatetime', () => {
|
|
it('returns formatted current date', async () => {
|
|
// Ensure the plugin imports properly
|
|
const faker = await import('../src/index');
|
|
expect(faker.plugin.templateFunctions?.length).toBe(226);
|
|
});
|
|
});
|