Files

10 lines
216 B
TypeScript
Raw Permalink Normal View History

2019-09-05 17:17:33 +02:00
import { expect, tap } from '@pushrocks/tapbundle';
2017-08-17 09:03:16 +02:00
2022-03-18 02:15:17 +01:00
import * as smartopen from '../ts/index.js';
2017-08-17 09:03:16 +02:00
tap.test('should open a webpage', async () => {
await smartopen.openUrl('https://lossless.com');
});
2017-08-17 09:03:16 +02:00
tap.start();