Skip to content

Commit

Permalink
Work around a bug in the broken link checker (#554)
Browse files Browse the repository at this point in the history
  • Loading branch information
VasilyStrelyaev committed May 26, 2016
1 parent 09bef89 commit b6c02ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis-docs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: node_js
matrix:
include:
- node_js: "5"
- node_js: "stable"
env: GULP_TASK="test-docs"
fast_finish: true

Expand Down
2 changes: 1 addition & 1 deletion Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ gulp.task('test-website', ['serve-website'], function (cb) {
var fail = false;
var brokenLinks = [];

var siteChecker = new blc.SiteChecker({}, {
var siteChecker = new blc.SiteChecker({ excludeLinksToSamePage: false }, {
link: function (result) {
if (result.broken) {
brokenLinks.push(result.url.resolved ? result.url.resolved : result.url.original);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ permalink: /documentation/extending-testcafe/custom-reporter-plugin/helper-metho
---
# Helper Methods

The helper methods are used while [implementing a reporter](creating-reporter-plugin.md#implementing-reporter)
The helper methods are used while [implementing a reporter](index.md#implementing-reporter)
to format a report output. TestCafe mixins these methods to the reporter.

To access the helper methods, use `this`.
Expand Down

0 comments on commit b6c02ad

Please sign in to comment.