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