webstore/test/test.typedrequestcache.browser.ts
2020-10-17 16:44:53 +00:00

12 lines
382 B
TypeScript

import { expect, tap } from '@pushrocks/tapbundle';
import * as webstore from '../ts/index';
let testTypedrequestcache: webstore.TypedrequestCache;
tap.test('first test', async () => {
testTypedrequestcache = new webstore.TypedrequestCache('https://test.lossless.com/typedrequest')
expect(testTypedrequestcache).to.be.instanceOf(webstore.TypedrequestCache);
});
tap.start();