UNPKG

kitchen-sink

Version:

return a link to an image of a kitchen sink

14 lines (11 loc) 279 B
import test from 'ava' import link from '.' test('can get link', t => { t.is(typeof link, "string") }) test('link is to an image', t => { t.true(/jpg/.test(link)) }) test.todo('link is of an image that is actually of a sink', // Implement advanced image processing tools. )