webstore/test/test.typedrequestcache.both.ts
2023-07-27 13:51:40 +02:00

12 lines
385 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);
});
tap.start();