chore: Setup ava and sinon test libraries

This commit is contained in:
Faruk AYDIN
2021-10-08 19:02:36 +02:00
committed by Ali BARIN
parent a0c34e9353
commit a39ae93ca4
4 changed files with 498 additions and 29 deletions

View File

@@ -0,0 +1,7 @@
import test from 'ava';
const fn = () => 'foo';
test('fn() returns foo', t => {
t.is(fn(), 'foo');
});