Skip to content

Commit

Permalink
Revert throwing error
Browse files Browse the repository at this point in the history
This change causes the tests to fail!
  • Loading branch information
rictic committed Oct 25, 2018
1 parent 014acc4 commit 9e0cb58
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
3 changes: 0 additions & 3 deletions packages/wct-mocha/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,6 @@ export function initialize(initConfig?: config.Config) {
if (error) {
throw error;
}
if (!socket) {
throw new Error(`CLISocket.init failed to give a socket`);
}

// Are we a child of another run?
const current = ChildRunner.current();
Expand Down
10 changes: 4 additions & 6 deletions packages/wct-mocha/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,14 @@
"extends": "../../tsconfig-base.json",
"compilerOptions": {
"target": "es5",
"strict": true,
"strict": false,
"isolatedModules": false,
"noUnusedLocals": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"noImplicitThis": true,
"noImplicitThis": false,
"removeComments": false,
"preserveConstEnums": true,
"suppressImplicitAnyIndexErrors": false,
"noImplicitAny": false,
"noImplicitReturns": false,
"suppressImplicitAnyIndexErrors": true,
"outDir": "lib",
"lib": [
"dom",
Expand Down

0 comments on commit 9e0cb58

Please sign in to comment.