9 lines
232 B
TypeScript
9 lines
232 B
TypeScript
|
|
import { expect, tap } from '@git.zone/tstest/tapbundle';
|
||
|
|
import * as smartrestic from '../ts/index.js';
|
||
|
|
|
||
|
|
tap.test('first test', async () => {
|
||
|
|
expect(smartrestic.demoExport).toContain('Hi there');
|
||
|
|
});
|
||
|
|
|
||
|
|
export default tap.start();
|