fix(core): switch from typings-global to @types/node

This commit is contained in:
2018-05-22 13:29:49 +02:00
parent 0430397e4f
commit 1498f6c2b2
8 changed files with 205 additions and 44 deletions

View File

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