1 import {TestBed} from '@angular/core/testing';
2 import {PlxModalBackdrop} from './modal-backdrop';
4 describe('plx-modal-backdrop', () => {
7 TestBed.configureTestingModule({declarations: [PlxModalBackdrop]});
10 it('should render backdrop with required CSS classes', () => {
11 const fixture = TestBed.createComponent(PlxModalBackdrop);
13 fixture.detectChanges();
14 expect(fixture.nativeElement).toHaveCssClass('modal-backdrop');