Skip to content
Snippets Groups Projects
Commit 803babb8 authored by paflov's avatar paflov
Browse files

Fix test by destroying fixture after test

parent 1efc8a6d
No related branches found
No related tags found
No related merge requests found
......@@ -72,6 +72,10 @@ describe('UnithostComponent', () => {
fixture.detectChanges();
});
afterEach(() => {
fixture.destroy();
});
it('should create', () => {
expect(component).toBeTruthy();
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment