887b66e423cc7ac85ceb3c0f37746c50d6c46f6a
[sdc/sdc-workflow-designer.git] /
1 import {TestBed} from '@angular/core/testing';
2 import {PlxModalBackdrop} from './modal-backdrop';
3
4 describe('plx-modal-backdrop', () => {
5
6     beforeEach(() => {
7         TestBed.configureTestingModule({declarations: [PlxModalBackdrop]});
8     });
9
10     it('should render backdrop with required CSS classes', () => {
11         const fixture = TestBed.createComponent(PlxModalBackdrop);
12
13         fixture.detectChanges();
14         expect(fixture.nativeElement).toHaveCssClass('modal-backdrop');
15     });
16 });