summaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/app/paletx/plx-modal/modal-backdrop.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdc-workflow-designer-ui/src/app/paletx/plx-modal/modal-backdrop.spec.ts')
-rw-r--r--sdc-workflow-designer-ui/src/app/paletx/plx-modal/modal-backdrop.spec.ts16
1 files changed, 16 insertions, 0 deletions
diff --git a/sdc-workflow-designer-ui/src/app/paletx/plx-modal/modal-backdrop.spec.ts b/sdc-workflow-designer-ui/src/app/paletx/plx-modal/modal-backdrop.spec.ts
new file mode 100644
index 00000000..887b66e4
--- /dev/null
+++ b/sdc-workflow-designer-ui/src/app/paletx/plx-modal/modal-backdrop.spec.ts
@@ -0,0 +1,16 @@
+import {TestBed} from '@angular/core/testing';
+import {PlxModalBackdrop} from './modal-backdrop';
+
+describe('plx-modal-backdrop', () => {
+
+ beforeEach(() => {
+ TestBed.configureTestingModule({declarations: [PlxModalBackdrop]});
+ });
+
+ it('should render backdrop with required CSS classes', () => {
+ const fixture = TestBed.createComponent(PlxModalBackdrop);
+
+ fixture.detectChanges();
+ expect(fixture.nativeElement).toHaveCssClass('modal-backdrop');
+ });
+});