Files
smartrestic/test/test.node.ts
T

9 lines
232 B
TypeScript
Raw Normal View History

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();