2024-10-21 12:16:09 +02:00
|
|
|
import { expect, expectAsync, tap } from '@push.rocks/tapbundle';
|
|
|
|
import * as tspublish from '../ts/index.js';
|
|
|
|
|
|
|
|
tap.test('first test', async () => {
|
|
|
|
console.log(tspublish);
|
|
|
|
});
|
|
|
|
|
2024-10-28 01:24:52 +01:00
|
|
|
tap.test('should create a TsPublish instance', async () => {
|
|
|
|
const tspublishInstance = new tspublish.TsPublish();
|
|
|
|
expect(tspublishInstance).toBeTruthy();
|
|
|
|
});
|
|
|
|
|
2024-10-21 12:16:09 +02:00
|
|
|
tap.start();
|