Skip to content

Commit

Permalink
Fix bad merge, re-do #25
Browse files Browse the repository at this point in the history
  • Loading branch information
dfederm committed Dec 25, 2019
1 parent 864243a commit 5c422fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "karma-jasmine-html-reporter",
"version": "1.5.0",
"version": "1.5.1",
"description": "A Karma plugin. Dynamically displays tests results at debug.html page",
"main": "./src/index.js",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/lib/adapter.js
Expand Up @@ -64,7 +64,7 @@
* Filter which specs will be run by matching the start of the full name against the `spec` query param.
*/
var specFilter;
if (!config.specFilter || queryString.getParam("spec")) {
if (queryString.getParam("spec")) {
specFilter = new jasmine.HtmlSpecFilter({
filterString: function () { return queryString.getParam("spec"); }
});
Expand Down

0 comments on commit 5c422fa

Please sign in to comment.