Files
clearml-web/src/app/webapp-common/shared/components/experiment-refresh/experiment-refresh.component.spec.ts
shyallegro ab12845bd1 Release v1.4 (#23)
Co-authored-by: shyallegro <support@allegro.ai>
2022-04-24 12:30:51 +03:00

28 lines
803 B
TypeScript

import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { ExperimentRefreshComponent } from './experiment-refresh.component';
import {StoreModule} from '@ngrx/store';
describe('ExperimentRefreshComponent', () => {
let component: ExperimentRefreshComponent;
let fixture: ComponentFixture<ExperimentRefreshComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ ExperimentRefreshComponent ],
imports: [StoreModule.forRoot({})]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ExperimentRefreshComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});