问题
I have two spec files in my sample Angular app. The spec files names are
src/app/app.component.spec.ts
& src/app/app.component-two.spec.ts
. I want to run only the tests in file src/app/app.component.spec.ts
. So, I added the other file as exclude in the karma.conf.js
file (pasted below), still the tests mentioned in the exclude option are being executed.
Any help is greatly appreciated.
// Karma configuration file, see link for more information
// https://karma-runner.github.io/1.0/config/configuration-file.html
module.exports = function (config) {
config.set({
basePath: '',
exclude: [
'src/app/app.component-two.spec.ts'
],
frameworks: ['jasmine', '@angular/cli'],
plugins: [
require('karma-jasmine'),
require('karma-chrome-launcher'),
require('karma-jasmine-html-reporter'),
require('karma-coverage-istanbul-reporter'),
require('@angular/cli/plugins/karma')
],
client:{
clearContext: false // leave Jasmine Spec Runner output visible in browser
},
coverageIstanbulReporter: {
reports: [ 'html', 'lcovonly' ],
fixWebpackSourcePaths: true
},
angularCli: {
environment: 'dev'
},
reporters: ['progress', 'kjhtml'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false
});
};
回答1:
You can exclude the file in the tsconfig.spec.json
:
{
"extends": "../tsconfig.json",
"compilerOptions": { ... },
"files": [
"test.ts"
],
"include": [
"**/*.spec.ts",
"**/*.d.ts"
],
"exclude": [
"app/app.component-two.spec.ts" <------------------
]
来源:https://stackoverflow.com/questions/46357276/why-is-the-karma-configuration-file-exclude-option-is-not-working