fix npm test/lint failures

This commit is contained in:
groovecoder 2017-05-02 12:07:20 -05:00
parent 5707bbd9d0
commit 9a29e31874
2 changed files with 6 additions and 6 deletions

View file

@ -1 +1,2 @@
testpilot-metrics.js
lib/shield/*.js

View file

@ -1,3 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
const self = require("sdk/self");
const { when: unload } = require("sdk/system/unload");
const tabs = require("sdk/tabs");
@ -25,18 +29,13 @@ class ContainersStudy extends shield.Study {
}
whenEligible () {
console.log("ContainersStudy.whenEligible()");
}
whenInstalled () {
console.log("ContainersStudy.whenInstalled()");
console.log("shield variation: ", this.variation);
tabs.open(`data:text/html, Thank you for helping us study Containers in Firefox. You are in the ${this.variation} variation.`);
}
cleanup(reason) {
console.log("ContainersStudy.cleanup()");
console.log(reason);
cleanup() {
}
}