webstore/test/test.typedrequestcache.both.ts
2024-04-18 20:51:59 +02:00

12 lines
400 B
TypeScript

import { expect, tap } from '@push.rocks/tapbundle';
import * as webstore from '../ts/index.js';
let testTypedrequestcache: webstore.TypedrequestCache;
tap.test('first test', async () => {
testTypedrequestcache = new webstore.TypedrequestCache('https://test.lossless.com/typedrequest');
expect(testTypedrequestcache).toBeInstanceOf(webstore.TypedrequestCache);
});
export default tap.start();