smartopen/test/test.ts

10 lines
216 B
TypeScript
Raw Normal View History

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