26 lines
671 B
TypeScript
26 lines
671 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { GuaranteeTabComponent } from './guarantee-tab.component';
|
|
|
|
describe('GuaranteeTabComponent', () => {
|
|
let component: GuaranteeTabComponent;
|
|
let fixture: ComponentFixture<GuaranteeTabComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ GuaranteeTabComponent ]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(GuaranteeTabComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|