UNPKG

@meanie/angular-convert

Version:

An Angular service with various conversion helpers

68 lines (52 loc) 1.58 kB
/** * Karma configuration */ module.exports = function(config) { config.set({ //Base path that will be used to resolve all patterns (eg. files, exclude) basePath: '', //Files files: [ 'node_modules/angular/angular.js', 'node_modules/angular-mocks/angular-mocks.js', 'src/**/*.js', ], //Preprocessors preprocessors: { 'src/**/*.js': ['babel'], }, //Frameworks to use (see https://npmjs.org/browse/keyword/karma-adapter) frameworks: ['jasmine'], //Test results reporter to use (see https://npmjs.org/browse/keyword/karma-reporter) reporters: ['spec'], //Web server port port: 9876, //Web server URL root urlRoot: '/', //Enable / disable colors in the output (reporters and logs) colors: true, //Level of logging logLevel: config.LOG_INFO, //Enable / disable watching file and executing tests whenever any file changes autoWatch: false, //Start these browsers (see https://npmjs.org/browse/keyword/karma-launcher) browsers: ['PhantomJS'], //Continuous integration mode singleRun: true, //Don't fail on empty test suite failOnEmptyTestSuite: false, //Babel options babelPreprocessor: { options: { presets: ['babel-preset-es2015-without-strict'], sourceMap: 'inline', }, // filename: function(file) { // return file.originalPath.replace(/\.js$/, '.es5.js'); // }, // sourceFileName: function(file) { // return file.originalPath; // }, }, }); };