fix(core): update

This commit is contained in:
2020-10-06 15:56:00 +00:00
commit 8241e641a9
15 changed files with 11782 additions and 0 deletions

10
test/test.browser.ts Normal file
View File

@@ -0,0 +1,10 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as deesComms from '../ts/index';
let deesCommsTest: deesComms.DeesComms;
tap.test('first test', async () => {
deesCommsTest = new deesComms.DeesComms();
});
tap.start();