Logo

GitLab

Sign in

tutorial / directive

  • Back to Group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • directive
  • ..
  • Chart
  • karma.conf.js
  • 组件提交
    48ef3e65
    zhaoxing authored
    2017-08-23 11:21:41 +0800  
    Browse File »
karma.conf.js 261 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
module.exports = function(config) {
	config.set({
		browsers: ['Chrome', 'Firefox'],
		frameworks: ['browserify', 'jasmine'],
		reporters: ['progress', 'html'],

		preprocessors: {
			'src/**/*.js': ['browserify']
		},
		browserify: {
			debug: true
		}
	});
};