2020-11-16 16:54:37 +01:00
|
|
|
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
2020-05-13 14:41:43 +02:00
|
|
|
|
|
|
|
import { ChangesComponent } from './changes.component';
|
|
|
|
|
|
|
|
describe('ChangesComponent', () => {
|
|
|
|
let component: ChangesComponent;
|
|
|
|
let fixture: ComponentFixture<ChangesComponent>;
|
|
|
|
|
2020-11-16 16:54:37 +01:00
|
|
|
beforeEach(waitForAsync(() => {
|
2020-05-13 14:41:43 +02:00
|
|
|
TestBed.configureTestingModule({
|
|
|
|
declarations: [ChangesComponent],
|
|
|
|
})
|
|
|
|
.compileComponents();
|
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(ChangesComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|