webstore/test/test.typedrequestcache.both.ts

12 lines
400 B
TypeScript
Raw Permalink Normal View History

2023-07-27 11:51:40 +00:00
import { expect, tap } from '@push.rocks/tapbundle';
2022-05-28 10:33:10 +00:00
import * as webstore from '../ts/index.js';
2020-10-17 16:44:53 +00:00
let testTypedrequestcache: webstore.TypedrequestCache;
tap.test('first test', async () => {
2022-05-28 10:33:10 +00:00
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
});
2024-04-18 18:51:59 +00:00
export default tap.start();