ditto/packages/captcha/assets.test.ts
2025-02-26 15:09:01 -06:00

9 lines
270 B
TypeScript

import { assert } from '@std/assert';
import { getCaptchaImages } from './assets.ts';
Deno.test('getCaptchaImages', async () => {
// If this function runs at all, it most likely worked.
const { bgImages } = await getCaptchaImages();
assert(bgImages.length);
});