Update drool and API calls

This commit is contained in:
Surma 2015-12-11 16:54:27 +00:00
parent 601515117e
commit adae90db8f
3 changed files with 3 additions and 5 deletions

View File

@ -13,7 +13,7 @@
"chai": "^3.3.0", "chai": "^3.3.0",
"chai-jquery": "^2.0.0", "chai-jquery": "^2.0.0",
"del": "^2.0.2", "del": "^2.0.2",
"drool": "^0.2.1", "drool": "^0.3.1",
"escodegen": "^1.6.1", "escodegen": "^1.6.1",
"google-closure-compiler": "", "google-closure-compiler": "",
"gulp": "^3.9.0", "gulp": "^3.9.0",

View File

@ -18,7 +18,7 @@ module.exports = function(stamps, i, driver) {
}, },
assert: function(after, initial) { assert: function(after, initial) {
heapDiffPrinter(after, initial, i, 'menu'); heapDiffPrinter(after, initial, i, 'menu');
stamps.push([after.jsEventListeners, initial.jsEventListeners]); stamps.push([after.counts.jsEventListeners, initial.counts.jsEventListeners]);
} }
}, driver); }, driver);
}; };

View File

@ -16,9 +16,7 @@ module.exports = function(stamps, i, driver) {
}, },
assert: function(after, initial) { assert: function(after, initial) {
heapDiffPrinter(after, initial, i, 'snackbar'); heapDiffPrinter(after, initial, i, 'snackbar');
stamps.push([after.jsEventListeners, initial.jsEventListeners]); stamps.push([after.counts.jsEventListeners, initial.counts.jsEventListeners]);
} }
}, driver); }, driver);
} }