2023-08-05 04:57:06 +02:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { StatusTranslateComponent } from './status-translate.component';
|
|
|
|
|
2023-08-05 05:36:21 +02:00
|
|
|
xdescribe('StatusTranslateComponent', () => {
|
2023-08-05 04:57:06 +02:00
|
|
|
let component: StatusTranslateComponent;
|
|
|
|
let fixture: ComponentFixture<StatusTranslateComponent>;
|
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
declarations: [ StatusTranslateComponent ]
|
|
|
|
})
|
|
|
|
.compileComponents();
|
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(StatusTranslateComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|