Skip to content

Commit 151674d

Browse files
committed
Merge pull request #127 from TehShrike/allow-other-test-types
Don't assume qunit is the default test framework
2 parents 1f9698a + b919bfd commit 151674d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ exports.Server = function Server(bsClient, workers) {
7878
patch += '<script type="text/javascript" src="/_patch/' + script + '"></script>\n';
7979
});
8080
patch += '<script type="text/javascript">mocha.reporter(Mocha.BrowserStack);</script>\n';
81-
} else {
81+
} else if (framework === 'qunit') {
8282
framework_scripts['qunit'].forEach(function(script) {
8383
patch += '<script type="text/javascript" src="/_patch/' + script + '"></script>\n';
8484
});

0 commit comments

Comments
 (0)