Files
smartrust/test/test.ts

13 lines
368 B
TypeScript
Raw Normal View History

2026-02-08 12:28:51 +00:00
import { expect, tap } from '@git.zone/tstest/tapbundle';
import * as smartrust from '../ts/index.js';
2026-02-08 12:28:51 +00:00
tap.test('should export RustBridge', async () => {
expect(smartrust.RustBridge).toBeTypeOf('function');
});
2026-02-08 12:28:51 +00:00
tap.test('should export RustBinaryLocator', async () => {
expect(smartrust.RustBinaryLocator).toBeTypeOf('function');
});
export default tap.start();