mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-22 09:49:56 +00:00
8 lines
118 B
TypeScript
8 lines
118 B
TypeScript
import test from 'ava'
|
|
|
|
const fn = () => 'foo'
|
|
|
|
test('fn() returns foo', t => {
|
|
t.pass()
|
|
// t.is(fn(), 'foo');
|
|
})
|