webstore/test/test.typedrequestcache.browser.ts
2022-01-24 04:39:12 +01:00

12 lines
380 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).toBeInstanceOf(webstore.TypedrequestCache);
});
tap.start();