mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
7 lines
194 B
TypeScript
7 lines
194 B
TypeScript
import { assertEquals } from '@std/assert';
|
|
|
|
import { languageSchema } from './schema.ts';
|
|
|
|
Deno.test('languageSchema', () => {
|
|
assertEquals(languageSchema.safeParse('en').success, true);
|
|
});
|