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