initial commit

This commit is contained in:
Robin Linus
2015-12-18 16:50:36 +01:00
commit f5b2b47136
46 changed files with 2350 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
var path = require('path');
var ret = {
'suites': ['app/test'],
'webserver': {
'pathMappings': []
}
};
var mapping = {};
var rootPath = (__dirname).split(path.sep).slice(-1)[0];
mapping['/components/' + rootPath +
'/app/bower_components'] = 'bower_components';
ret.webserver.pathMappings.push(mapping);
module.exports = ret;