tscoverage/test/test.ts

8 lines
142 B
TypeScript
Raw Normal View History

2020-06-03 11:16:21 +00:00
import { tap, expect } from '@pushrocks/tapbundle';
2020-06-03 11:13:50 +00:00
tap.test('should run a test', async () => {
console.log('hi there');
2020-06-03 11:16:21 +00:00
});
2020-06-03 11:13:50 +00:00
2020-06-03 11:16:21 +00:00
tap.start();