CompUGE-Bench / src /app /components /body /submitting /submitting-guide /submitting-guide.component.spec.ts
Ahmad Shallouf
added new modifications
27e40c0
raw
history blame contribute delete
660 Bytes
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { SubmittingGuideComponent } from './submitting-guide.component';
describe('SubmittingGuideComponent', () => {
let component: SubmittingGuideComponent;
let fixture: ComponentFixture<SubmittingGuideComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [SubmittingGuideComponent]
})
.compileComponents();
fixture = TestBed.createComponent(SubmittingGuideComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});