webstore/test/test.typedrequestcache.browser.ts

12 lines
380 B
TypeScript
Raw Normal View History

2020-10-17 16:44:53 +00:00
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')
2022-01-24 03:39:12 +00:00
expect(testTypedrequestcache).toBeInstanceOf(webstore.TypedrequestCache);
2020-10-17 16:44:53 +00:00
});
tap.start();