Karma显示"未完成:未找到规格";虽然在angular项目中存在规范文件 &



我已经在规范文件中为几个组件编写了测试用例,但是当我运行ng-test时,它仍然显示我"Incomplete: no specs found, , randomized with seed ######"。我的karma文件看起来像这样

// 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: '',
frameworks: ['jasmine', '@angular-devkit/build-angular'],
plugins: [
require('karma-jasmine'),
require('karma-chrome-launcher'),
require('karma-jasmine-html-reporter'),
require('karma-coverage-istanbul-reporter'),
require('@angular-devkit/build-angular/plugins/karma')
],
client: {
clearContext: false // leave Jasmine Spec Runner output visible in browser
},
coverageIstanbulReporter: {
dir: require('path').join(__dirname, './coverage/tenms'),
reports: ['html', 'lcovonly', 'text-summary'],
fixWebpackSourcePaths: true
},
reporters: ['progress', 'kjhtml'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false,
restartOnFileChange: true
});
};

和src文件夹中的条目test.ts文件看起来像这样

// This file is required by karma.conf.js and loads recursively all the .spec and framework files
import 'zone.js/dist/zone-testing';
import { getTestBed } from '@angular/core/testing';
import {
BrowserDynamicTestingModule,
platformBrowserDynamicTesting
} from '@angular/platform-browser-dynamic/testing';
declare const require: any;
// First, initialize the Angular testing environment.
getTestBed().initTestEnvironment(
BrowserDynamicTestingModule,
platformBrowserDynamicTesting()
);
// Then we find all the tests.
const context = require.context('./', true, /.spec.ts$/);
// And load the modules.
context.keys().map(context);

项目中有两个不同组件的规范文件。其中一些包含一些错误。是否由于使用相对路径导入规范文件中的某些文件而导致错误而无法找到规范文件?我该怎么做才能解决这个问题?提前感谢

可能有任何编译器错误导致Karma Runner停止,或者您可以寻找您的测试。Ts文件如下-

//然后找到所有的测试。Const context = require.context('。/', true,/. specs .ts$/);

确保这里允许所有的spec。

找到答案了。我必须纠正spec.ts文件中的所有错误,以避免编译时错误。之后一切正常。

相关内容

  • 没有找到相关文章

最新更新