This repository has been archived on 2023-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
automate/packages/backend/test/sample.ts
2021-10-08 19:02:36 +02:00

8 lines
106 B
TypeScript

import test from 'ava';
const fn = () => 'foo';
test('fn() returns foo', t => {
t.is(fn(), 'foo');
});