2018-05-22 11:29:49 +00:00
|
|
|
import { expect, tap } from 'tapbundle';
|
2017-08-17 07:03:16 +00:00
|
|
|
|
2018-05-22 11:29:49 +00:00
|
|
|
import * as smartopen from '../ts/index';
|
2017-08-17 07:03:16 +00:00
|
|
|
|
|
|
|
tap.test('should open a webpage', async () => {
|
2018-05-22 11:29:49 +00:00
|
|
|
await smartopen.openUrl('https://lossless.com');
|
|
|
|
});
|
2017-08-17 07:03:16 +00:00
|
|
|
|
2018-05-22 11:29:49 +00:00
|
|
|
tap.start();
|