smartopen/test/test.ts
2022-03-18 02:15:17 +01:00

10 lines
216 B
TypeScript

import { expect, tap } from '@pushrocks/tapbundle';
import * as smartopen from '../ts/index.js';
tap.test('should open a webpage', async () => {
await smartopen.openUrl('https://lossless.com');
});
tap.start();