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