fix(core): update

This commit is contained in:
2022-02-25 20:36:44 +01:00
parent babcb832f3
commit e5fe74d2d2
6 changed files with 294 additions and 142 deletions

View File

@@ -1,17 +0,0 @@
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();