html-snapshots 0.17.7 → 0.18.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.c8rc.json +5 -0
- package/.github/workflows/verify.yml +3 -3
- package/LICENSE.md +1 -1
- package/README.md +5 -5
- package/examples/custom/myFilter.js +1 -1
- package/examples/custom/package-lock.json +74 -67
- package/examples/custom/package.json +1 -1
- package/examples/custom/snapshot.js +1 -1
- package/examples/debug-phantomjs/package-lock.json +74 -67
- package/examples/debug-phantomjs/package.json +1 -1
- package/examples/debug-phantomjs/snapshot.js +1 -1
- package/examples/html5rocks/package-lock.json +74 -67
- package/examples/html5rocks/package.json +1 -1
- package/examples/html5rocks/snapshot.js +1 -1
- package/examples/process-limit/package-lock.json +74 -67
- package/examples/process-limit/package.json +1 -1
- package/examples/process-limit/snapshot.js +1 -1
- package/examples/simple-promise/package-lock.json +74 -67
- package/examples/simple-promise/package.json +1 -1
- package/examples/simple-promise/snapshot.js +1 -1
- package/examples/sitemap-index/package-lock.json +130 -123
- package/examples/sitemap-index/package.json +1 -1
- package/examples/sitemap-index/snapshot.js +1 -1
- package/examples/utils/index.js +1 -1
- package/examples/verbose/package-lock.json +74 -67
- package/examples/verbose/package.json +1 -1
- package/examples/verbose/snapshot.js +1 -1
- package/lib/async/exists.js +1 -1
- package/lib/async/index.js +1 -1
- package/lib/common/index.js +1 -1
- package/lib/common/node.js +1 -1
- package/lib/common/sitemap.js +1 -1
- package/lib/html-snapshots.js +1 -1
- package/lib/input-generators/_base.js +1 -1
- package/lib/input-generators/array.js +1 -1
- package/lib/input-generators/index.js +1 -1
- package/lib/input-generators/robots.js +1 -1
- package/lib/input-generators/sitemap-index.js +1 -1
- package/lib/input-generators/sitemap.js +1 -1
- package/lib/input-generators/textfile.js +1 -1
- package/lib/phantom/customFilter.js +1 -1
- package/lib/phantom/default.js +1 -1
- package/lib/phantom/modules/cli.js +1 -1
- package/lib/phantom/modules/detectors.js +1 -1
- package/lib/phantom/modules/globals.js +1 -1
- package/lib/phantom/modules/selectorDetect.js +1 -1
- package/lib/phantom/modules/verbose.js +1 -1
- package/lib/phantom/removeScripts.js +1 -1
- package/package.json +19 -18
- package/test/helpers/options.js +1 -1
- package/test/helpers/result.js +1 -1
- package/test/helpers/sitemap.js +1 -1
- package/test/mocha/async/test.js +1 -1
- package/test/mocha/common/helpers.js +1 -1
- package/test/mocha/common/node.js +1 -1
- package/test/mocha/common/test.js +1 -1
- package/test/mocha/html-snapshots/basics.js +1 -1
- package/test/mocha/html-snapshots/myFilter.js +1 -1
- package/test/mocha/html-snapshots/phantomjs-options.js +1 -1
- package/test/mocha/html-snapshots/process-limit.js +1 -1
- package/test/mocha/html-snapshots/robots.js +1 -1
- package/test/mocha/html-snapshots/sitemap-index.js +1 -1
- package/test/mocha/html-snapshots/sitemap.js +1 -1
- package/test/mocha/html-snapshots/snapshot-scripts.js +1 -1
- package/test/mocha/html-snapshots/test.js +1 -1
- package/test/mocha/html-snapshots/use-jquery.js +1 -1
- package/test/mocha/html-snapshots/utils.js +1 -1
- package/test/mocha/input-generators/sitemap-index.js +1 -1
- package/test/mocha/input-generators/sitemap.js +1 -1
- package/test/mocha/input-generators/test.js +1 -1
- package/test/server/index.js +1 -1
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* In-test, custom filter script.
|
|
3
3
|
* Adds a custom tag onto the body.
|
|
4
4
|
*
|
|
5
|
-
* Copyright (c) 2013 -
|
|
5
|
+
* Copyright (c) 2013 - 2022, Alex Grant, LocalNerve, contributors
|
|
6
6
|
*/
|
|
7
7
|
module.exports = function(content) {
|
|
8
8
|
console.log("IN THE CUSTOMFILTER");
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Library tests focused on the phantomjsOptions option.
|
|
3
3
|
*
|
|
4
|
-
* Copyright (c) 2013 -
|
|
4
|
+
* Copyright (c) 2013 - 2022, Alex Grant, LocalNerve, contributors
|
|
5
5
|
*/
|
|
6
6
|
/* global beforeEach, describe, it */
|
|
7
7
|
// var assert = require("assert");
|
package/test/server/index.js
CHANGED