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:
parent
52c3957fc0
commit
e35da5b060
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue