fix(index.js in browsertime plugin): add in axe checks and rules to options object which was previou (#2867)

ISSUES CLOSED: #2854

Co-authored-by: Peter Hedenskog <peter@soulgalore.com>
This commit is contained in:
gfoxCartrawler 2020-02-19 09:14:17 +00:00 committed by GitHub
parent 52c3957fc0
commit e35da5b060
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ module.exports = {
this.useAxe = options.axe && options.axe.enable;
this.options = merge({}, defaultConfig, options.browsertime);
this.allOptions = options;
merge(this.options, { verbose: options.verbose });
merge(this.options, { verbose: options.verbose, axe: options.axe });
this.firstParty = options.firstParty;
this.options.mobile = options.mobile;
this.storageManager = context.storageManager;