This commit is contained in:
2024-12-26 00:29:13 +01:00
commit d7c8972072
25 changed files with 10342 additions and 0 deletions

14
test/test.node.ts Normal file
View File

@ -0,0 +1,14 @@
import { tap, expect } from '@push.rocks/tapbundle';
import * as nullresolve from '../ts/index.js';
let nullresolveInstance: nullresolve.NullResolve;
tap.test('should create, start and stop an instance of nullresolve', async () => {
nullresolveInstance = new nullresolve.NullResolve();
expect(nullresolveInstance).toBeInstanceOf(nullresolve.NullResolve);
await nullresolveInstance.start();
await nullresolveInstance.stop();
});
tap.start();