1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- module.exports = function(karma) {
- karma.set({
- frameworks: [ 'mocha', 'expect', 'sinon', 'browserify' ],
- files: [
-
- 'test/backward/**/*.compat.js',
- { pattern: 'test/backward/locales/**/*.json', watched: true, included: false, served: true},
- ],
- proxies: {
- '/locales': 'http://localhost:9877/base/test/backward/locales'
- },
- reporters: [ 'spec' ],
- preprocessors: {
- 'test/backward/**/*.compat.js': [ 'browserify' ]
- },
- browsers: [ 'PhantomJS' ],
- port: 9877,
-
-
-
-
-
-
-
-
-
-
-
- browserify: {
- debug: true,
- transform: [ 'babelify']
- }
- });
- };
|