13 lines
368 B
TypeScript
13 lines
368 B
TypeScript
import { expect, tap } from '@git.zone/tstest/tapbundle';
|
|
import * as smartrust from '../ts/index.js';
|
|
|
|
tap.test('should export RustBridge', async () => {
|
|
expect(smartrust.RustBridge).toBeTypeOf('function');
|
|
});
|
|
|
|
tap.test('should export RustBinaryLocator', async () => {
|
|
expect(smartrust.RustBinaryLocator).toBeTypeOf('function');
|
|
});
|
|
|
|
export default tap.start();
|