9 lines
174 B
TypeScript
9 lines
174 B
TypeScript
|
import { expect, tap } from '@pushrocks/tapbundle';
|
||
|
import '../ts/index';
|
||
|
|
||
|
tap.test('first test', async () => {
|
||
|
console.log('should create a sourcemap');
|
||
|
});
|
||
|
|
||
|
tap.start();
|