18 lines
472 B
TypeScript
18 lines
472 B
TypeScript
import { expect, expectAsync, tap } from '@pushrocks/tapbundle';
|
|
import * as bobcat from '../ts/index';
|
|
|
|
let testBobcatManager: bobcat.BobcatManager;
|
|
let testBobcat: bobcat.Bobcat;
|
|
|
|
tap.test('first test', async () => {
|
|
testBobcatManager = new bobcat.BobcatManager();
|
|
expect(testBobcatManager).toBeInstanceOf(bobcat.BobcatManager);
|
|
});
|
|
|
|
tap.test('', async () => {
|
|
testBobcat = new bobcat.Bobcat();
|
|
expect(testBobcat).toBeInstanceOf(bobcat.Bobcat);
|
|
})
|
|
|
|
tap.start();
|