Я пытаюсь проверить последовательность создания / удаления как REST-сервис. Приведенный ниже пример всегда проходит в IDE, но выдает ошибку в отладчике Karma / Jasmine.
"expect' was used when there was no current spec,
this could be because an asynchronous test timed out"
Каждый тест проходит нормально.
it("should return the number of deleted items after creation", done => {
const ex1 = sgformsService.getOrCreate("Endoskopie", 9999, "2019-03-20");
const ex2 = sgformsService.deleteByParameter(
"Endoskopie",
9999,
"2019-03-20"
);
const ex = ex2.pipe(concat(ex1)).subscribe((val: number) => {
expect(val).toEqual(7);
done();
});
});