web animation updates

This commit is contained in:
Adam Bradley
2015-06-10 15:31:15 -05:00
parent abcd8af221
commit f6a2c29605
191 changed files with 17692 additions and 29 deletions

View File

@ -0,0 +1,22 @@
module.exports = function(config) {
config.set({
frameworks: ['mocha', 'chai'],
plugins: [
'karma-mocha',
'karma-chai',
'karma-chrome-launcher',
'karma-firefox-launcher'
],
browsers: ['Firefox'],
// browsers: ['Safari', 'Chrome', 'ChromeCanary', 'Firefox', 'IE'],
basePath: '..',
files: [
// Populated in `grunt test` task.
],
singleRun: true,
port: 9876,
reporters: ['dots'],
colors: true,
autoWatch: false,
});
};