setup-nextflow/test/test.ts
Edmund Miller db82c135bd build: Setup typescript tests
I don't know why I do this to myself. But it's done now.
https://github.com/OneSignal/OneSignal-Website-SDK
Yoinked the configs from here
2022-11-17 19:32:25 +00:00

8 lines
No EOL
120 B
TypeScript

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