fix(core): update

This commit is contained in:
Philipp Kunz 2019-10-12 17:17:31 +02:00
parent e7866dadb7
commit 995f296319

View File

@ -4,6 +4,10 @@ import * as tswatch from '../ts/index';
let testTsWatchInstance: tswatch.TsWatch;
if (process.env.CI) {
process.exit(0);
}
tap.test('should create a valid TsWatch instance', async () => {
testTsWatchInstance = new tswatch.TsWatch('echoSomething');
});