14 lines
356 B
TypeScript
14 lines
356 B
TypeScript
import { expect, expectAsync, tap } from '@push.rocks/tapbundle';
|
|
import * as tspublish from '../ts/index.js';
|
|
|
|
tap.test('first test', async () => {
|
|
console.log(tspublish);
|
|
});
|
|
|
|
tap.test('should create a TsPublish instance', async () => {
|
|
const tspublishInstance = new tspublish.TsPublish();
|
|
expect(tspublishInstance).toBeTruthy();
|
|
});
|
|
|
|
tap.start();
|