14 lines
348 B
TypeScript
14 lines
348 B
TypeScript
import { expect, tap } from '@git.zone/tstest/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();
|