9 lines
194 B
TypeScript
9 lines
194 B
TypeScript
import { expect, expectAsync, tap } from '@pushrocks/tapbundle';
|
|
import * as fontloader from '../ts/index.js';
|
|
|
|
tap.test('first test', async () => {
|
|
console.log(fontloader);
|
|
});
|
|
|
|
tap.start();
|