fix(core): update

This commit is contained in:
2024-05-08 20:49:10 +02:00
commit 1d6d056942
26 changed files with 6396 additions and 0 deletions

11
test/test.nonci.ts Normal file
View File

@@ -0,0 +1,11 @@
import { expect, tap } from '@push.rocks/tapbundle';
import * as spark from '../ts/index.js';
let testSpark: spark.Spark;
tap.test('should create a spark instance', async () => {
testSpark = new spark.Spark();
expect(testSpark).toBeInstanceOf(spark.Spark);
});
tap.start();