8 lines
109 B
TypeScript
8 lines
109 B
TypeScript
import test from 'ava';
|
|
|
|
const fn = () => 'foo';
|
|
|
|
test('fn() returns foo', (t) => {
|
|
t.is(fn(), 'foo');
|
|
});
|