/ test.js
test.js
1  import test from 'ava';
2  import m from '.';
3  
4  test('main', async t => {
5  	await t.notThrows(m());
6  });