Updated test for releases component

This commit is contained in:
Erik Tiekstra
2021-05-19 07:34:10 +02:00
parent 4825ccc759
commit 87bbc683ea

View File

@@ -1,4 +1,4 @@
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA } from '@angular/core';
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { ReleasesComponent } from './releases.component';
@@ -9,7 +9,7 @@ describe('ReleasesComponent', () => {
beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
schemas: [CUSTOM_ELEMENTS_SCHEMA],
schemas: [CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA],
declarations: [ReleasesComponent],
}).compileComponents();
})