1
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
2
|
|
3
|
import { DialogComponent } from './component/dialog.component';
|
4
|
import {MatGridListModule} from '@angular/material/grid-list';
|
5
|
|
6
|
describe('DialogComponent', () => {
|
7
|
let component: DialogComponent;
|
8
|
let fixture: ComponentFixture<DialogComponent>;
|
9
|
|
10
|
beforeEach(async () => {
|
11
|
await TestBed.configureTestingModule({
|
12
|
declarations: [ DialogComponent ]
|
13
|
})
|
14
|
.compileComponents();
|
15
|
});
|
16
|
|
17
|
beforeEach(() => {
|
18
|
fixture = TestBed.createComponent(DialogComponent);
|
19
|
component = fixture.componentInstance;
|
20
|
fixture.detectChanges();
|
21
|
});
|
22
|
|
23
|
it('should create', () => {
|
24
|
expect(component).toBeTruthy();
|
25
|
});
|
26
|
});
|