Skip to content
Snippets Groups Projects
Commit 1000bc77 authored by jojohoch's avatar jojohoch
Browse files

[player] Update test for FloatingKeypadComponent

parent 93db7cd4
No related branches found
No related tags found
No related merge requests found
import { ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed } from '@angular/core/testing';
import { OverlayModule } from '@angular/cdk/overlay';
import { FloatingKeypadComponent } from './floating-keypad.component'; import { FloatingKeypadComponent } from './floating-keypad.component';
describe('FloatingKeypadComponent', () => { describe('FloatingKeypadComponent', () => {
...@@ -7,7 +8,8 @@ describe('FloatingKeypadComponent', () => { ...@@ -7,7 +8,8 @@ describe('FloatingKeypadComponent', () => {
beforeEach(async () => { beforeEach(async () => {
await TestBed.configureTestingModule({ await TestBed.configureTestingModule({
declarations: [ FloatingKeypadComponent ] imports: [OverlayModule],
declarations: [FloatingKeypadComponent]
}) })
.compileComponents(); .compileComponents();
}); });
...@@ -21,5 +23,4 @@ describe('FloatingKeypadComponent', () => { ...@@ -21,5 +23,4 @@ describe('FloatingKeypadComponent', () => {
it('should create', () => { it('should create', () => {
expect(component).toBeTruthy(); 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