fix(core): update
This commit is contained in:
17
test/test.ts
Normal file
17
test/test.ts
Normal file
@ -0,0 +1,17 @@
|
||||
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();
|
Reference in New Issue
Block a user