css-keyframer
Version:
Dynamic css animation keyframes Manipulation library.
28 lines (27 loc) • 591 B
JavaScript
module.exports = function(config) {
config.set({
basePath: "",
frameworks: ["mocha", "browserify", "phantomjs-shim"],
files: [
"test/**/*.spec.js"
],
exclude: [],
preprocessors: {
"test/**/*.spec.js": "browserify"
},
browserify: {
debug: true,
transform: [
["babelify", { plugins: ["babel-plugin-espower"] }]
]
},
reporters: ["progress"],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ["PhantomJS"],
singleRun: false,
concurrency: Infinity
});
};