9 lines
202 B
TypeScript
9 lines
202 B
TypeScript
import { tap } from '@git.zone/tstest/tapbundle';
|
|
import * as platformclient from '../ts/index.js';
|
|
|
|
tap.test('first test', async () => {
|
|
console.log(platformclient);
|
|
});
|
|
|
|
export default tap.start();
|