Files
webstore/test/test.typedrequestcache.both.ts

12 lines
400 B
TypeScript
Raw Permalink Normal View History

2023-07-27 13:51:40 +02:00
import { expect, tap } from '@push.rocks/tapbundle';
2022-05-28 12:33:10 +02: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 12:33:10 +02:00
testTypedrequestcache = new webstore.TypedrequestCache('https://test.lossless.com/typedrequest');
2022-01-24 04:39:12 +01:00
expect(testTypedrequestcache).toBeInstanceOf(webstore.TypedrequestCache);
2020-10-17 16:44:53 +00:00
});
2024-04-18 20:51:59 +02:00
export default tap.start();