source: trip-planner-front/node_modules/karma-chrome-launcher/examples/simple/karma.conf.js@ fa375fe

Last change on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 395 bytes
Line 
1module.exports = function (config) {
2 config.set({
3 basePath: '',
4
5 frameworks: ['mocha'],
6
7 files: [
8 '*.js'
9 ],
10
11 exclude: [],
12
13 reporters: ['progress'],
14
15 port: 9876,
16
17 colors: true,
18
19 logLevel: config.LOG_INFO,
20
21 autoWatch: false,
22
23 browsers: ['Chrome'],
24
25 singleRun: false,
26
27 plugins: [
28 require('../../'),
29 'karma-mocha'
30 ]
31 })
32}
Note: See TracBrowser for help on using the repository browser.