aboutsummaryrefslogtreecommitdiffstats
path: root/test.js
blob: e2b2a691894b76fcf069c80e057a512b7e01cd39 (plain)
1
2
3
4
5
6
7
8
9
10
import test from 'ava';
import main from './index';

test('Test main', (t) => {
  t.is(main(), 'Yea boi');
});

test('1 != 2', (t) => {
  t.not(1, 2);
});