Skip to main content
Module

x/flat/tests/image-test.ts

A collection of postprocessing utilities for flat
Go to Latest
File
import { assertEquals } from "https://deno.land/std@0.92.0/testing/asserts.ts"import { readImageFromURL } from '../src/image.ts'
const url = 'https://api.creativecommons.engineering/v1/thumbs/c8fe5f5b-cc1a-4794-91c5-7488c60f4914'
Deno.test("loads an image", async () => { const image = await readImageFromURL(url) assertEquals(image.bytes.length, 76507)})