chore(benchpress): add browserify bundling

Use browserify to bundle benchpress and its dependencies.
This commit is contained in:
uber5001
2015-06-23 15:26:51 -07:00
committed by Tobias Bosch
parent f1cf5298d8
commit c4e10ea9ac
11 changed files with 1413 additions and 14 deletions

View File

@ -1,6 +1,8 @@
export {verifyNoBrowserErrors} from './e2e_util';
import {bind, Options} from 'benchpress/benchpress';
var benchpress = global['benchpress'];
var bind = benchpress.bind;
var Options = benchpress.Options;
export function runClickBenchmark(config) {
var buttons = config.buttons.map(function(selector) { return $(selector); });