6 lines
76 B
TypeScript
6 lines
76 B
TypeScript
|
import test from 'ava';
|
||
|
|
||
|
test ('testing', (t) => {
|
||
|
t.is (true, true);
|
||
|
});
|