diff --git a/ts/index.ts b/ts/index.ts index 2727c1b..43cdf9f 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -2,8 +2,12 @@ import open = require('opn'); import { ChildProcess } from 'child_process'; export let openUrl = async urlArg => { - const childProcess = await open(urlArg, { - wait: false - }); - return childProcess; + if(!(process.env.CI === 'true')) { + const childProcess = await open(urlArg, { + wait: false + }); + return childProcess; + } else { + return null + } };