fix(build): modernize package configuration and simplify tests for the current toolchain

This commit is contained in:
2026-05-01 18:57:42 +00:00
parent e58a54f8c6
commit 831cb6734d
13 changed files with 6899 additions and 4679 deletions
+11
View File
@@ -0,0 +1,11 @@
import { expect, tap } from '@git.zone/tstest/tapbundle';
import * as smartsign from '../ts/index.js';
let testSmartSign: smartsign.SmartSign;
tap.test('should create a new SmartSign instance', async () => {
testSmartSign = new smartsign.SmartSign(Buffer.from('test certificate'));
expect(testSmartSign).toBeInstanceOf(smartsign.SmartSign);
});
export default tap.start();