Skip to content

Commit

Permalink
Merge pull request #110 from Brugman/feature/skip-is-good
Browse files Browse the repository at this point in the history
Display skipped test as success
  • Loading branch information
danielmorell authored Jun 6, 2022
2 parents 6c33742 + e87ed3d commit c3d7f6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/js/RollbarWordpressSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,13 +195,13 @@
if (php_config.php_logging_enabled) {
logThroughPhp(php_config);
} else {
failNotice("Skipped testing PHP logging since it is disabled.");
successNotice("Skipped testing PHP logging since it is disabled.");
}

if (js_logging_enabled) {
logThroughJs(client_side_access_token, environment, logging_level);
} else {
failNotice("Skipped testing JS logging since it is disabled.");
successNotice("Skipped testing JS logging since it is disabled.");
}

});
Expand Down

0 comments on commit c3d7f6b

Please sign in to comment.