Files
interfaces/test/test.node.ts
T
2026-05-05 12:03:46 +00:00

10 lines
292 B
TypeScript

import { expect, tap } from '@git.zone/tstest/tapbundle';
import * as shxInterfaces from '../ts/index.js';
tap.test('exports data and request namespaces', async () => {
expect(shxInterfaces.data).toBeTruthy();
expect(shxInterfaces.request).toBeTruthy();
});
export default tap.start();