Skip to content

Commit

Permalink
Allow users to run functional tests without running through unit test…
Browse files Browse the repository at this point in the history
…s first

Closes theintern#241.
  • Loading branch information
neonstalwart authored and csnover committed Sep 5, 2014
1 parent bee7ed1 commit 4a6512b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,10 @@ else {
}
});

suite.tests.push(new ClientSuite({ parent: suite, config: config }));
if (config.suites) {
suite.tests.push(new ClientSuite({ parent: suite, config: config }));
}

main.suites.push(suite);
});

Expand Down

0 comments on commit 4a6512b

Please sign in to comment.