smartopen/test/test.ts

10 lines
213 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
import * as smartopen from '../ts/index';
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();