Выдували почти целый день, пытаясь заставить работать асинхронное тестирование.Для различных тестов мне нужно вызвать whenStable (), подождать его и затем выполнить тест.Как только я пытаюсь использовать любые обещания, тесты проходят, все проходят, затем он останавливается в конце на несколько секунд, и я получаю сообщение об ошибке: «Uncaught Error:« ожидание »использовалось, когда не было текущей спецификации,это может быть вызвано тем, что тайм-аут асинхронного теста истек "
it('should switch tabs', async(() => {
const fixture = TestBed.createComponent(C2Component);
const component = fixture.debugElement.componentInstance;
fixture.whenStable().then(() => {
expect(true).toBeTruthy();
});
}));
. Если это единственный асинхронный тест, в котором я участвовал, и я комментирую его, тесты проходят (все проходят), и я не получаю ошибку приконец.Как только я добавляю это, они проходят (все проходят), и в конце я получаю сообщение об ошибке.
karma.conf.js:
// 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'),
reports: ['html', 'lcovonly'],
fixWebpackSourcePaths: true
},
reporters: ['progress', 'kjhtml'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false
});
};
Я пробовалэти различные версии теста:
it('should switch tabs', (done) => {
const fixture = TestBed.createComponent(C2Component);
const component = fixture.debugElement.componentInstance;
fixture.whenStable().then(() => {
expect(true).toBeTruthy();
done();
});
});
it('should switch tabs', async () => {
const fixture = TestBed.createComponent(C2Component);
const component = fixture.debugElement.componentInstance;
await fixture.whenStable()
expect(true).toBeTruthy();
});
Связанные версии пакета:
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-jasmine": "^1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"jasmine-core": "^2.99.1",
"jasmine-spec-reporter": "^4.2.1",
Также теперь пробовали с версиями:
"jasmine-core": "^3.3.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^4.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.5",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",