@piranna/react-pull-to-refresh
Version:
A React component for pull to refresh on the web.
74 lines (55 loc) • 1.25 kB
JavaScript
var fs = require('fs');
var path = require('path');
var REGEX_TEST = /\-test\.js$/;
function findTests(dir) {
var tests = [];
fs.readdirSync(dir).forEach(function (file) {
file = path.resolve(dir, file);
var stat = fs.statSync(file);
if (stat && stat.isDirectory()) {
tests = tests.concat(findTests(file));
} else if (REGEX_TEST.test(file)) {
tests.push(file);
}
});
return tests;
}
var tests = findTests(path.resolve('./lib'));
module.exports = function(config) {
var conf = {
basePath: '',
frameworks: ['mocha'],
files: tests,
preprocessors: {},
reporters: ['dots'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
captureTimeout: 60000,
singleRun: false,
webpack: {
cache: true,
devtool: 'inline-source-map',
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel'
}
]
}
},
webpackServer: {
stats: {
colors: true
}
}
};
tests.forEach(function (test) {
conf.preprocessors[test] = ['webpack', 'sourcemap'];
});
config.set(conf);
};