refactor(perf): e2e tests and benchpress should be written in es6

This commit is contained in:
Tobias Bosch
2015-01-06 15:19:22 -08:00
parent 373fd7d04a
commit fe2a09bc7f
17 changed files with 96 additions and 20 deletions

View File

@ -1,5 +1,5 @@
var timeBenchmark = require('./time_benchmark');
var tools = require('./tools');
var timeBenchmark = require('./src/time_benchmark');
var tools = require('./src/tools');
module.exports = {
runTimeBenchmark: timeBenchmark.runTimeBenchmark,

View File

@ -0,0 +1,6 @@
module.exports = function(gulp, plugins, config) {
return function(done) {
del(config.path, done);
};
};