fix(deps): bump dependencies, update build/test configuration, and reorganize npmextra configuration

This commit is contained in:
2026-01-04 15:20:54 +00:00
parent 2110278cac
commit 8d7f9d1b10
8 changed files with 1680 additions and 1391 deletions

9
test/test.chromium.ts Normal file
View File

@@ -0,0 +1,9 @@
import { expect, tap } from '@push.rocks/tapbundle';
import * as domtools from '../ts/index.js';
tap.test('first test', async () => {
const domtoolsInstance = await domtools.DomTools.setupDomTools();
expect(domtoolsInstance).toBeInstanceOf(domtools.DomTools);
});
tap.start();