smartopen/test/test.ts
2019-09-05 17:17:33 +02:00

10 lines
213 B
TypeScript

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