7 lines
208 B
JavaScript
7 lines
208 B
JavaScript
|
var timeBenchmark = require('./time_benchmark');
|
||
|
var tools = require('./tools');
|
||
|
|
||
|
module.exports = {
|
||
|
runTimeBenchmark: timeBenchmark.runTimeBenchmark,
|
||
|
verifyNoBrowserErrors: tools.verifyNoBrowserErrors
|
||
|
};
|