mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 03:19:46 +00:00
9 lines
270 B
TypeScript
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);
|
|
});
|