spark/test/test.nonci.ts
2024-05-08 20:49:10 +02:00

12 lines
281 B
TypeScript

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();