Open message opened 10 years ago
Hi I'm having the same issue. grunt-karma output is too noisy for our development team.
@message You might find that adding client: { captureConsole: false }
to your karma grunt config might do what you'd like logLevel: 'OFF'
to do? From your example though I think we might have had different issues.
e.g.
karma: {
cucumber: {
singleRun: false,
port: 9877,
runnerPort: 9101,
autoWatch: true,
captureTimeout: 60000,
browsers: ['Chrome'],
exclude: ['**/*.md', 'config/**'],
proxies: {
'/base/config/': 'http://localhost:9870/'
},
reporters: ['story'],
configFile: 'features/karma.conf.js',
client: {
captureConsole: false
}
}
}
I assumed that
logLevel = "OFF"
would not outputconsole.error()
messages to terminal.What am i doing wrong?