first commit
This commit is contained in:
25
src/app/content/cards/bootstrap/bootstrap.component.spec.ts
Normal file
25
src/app/content/cards/bootstrap/bootstrap.component.spec.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||||
|
||||
import { BootstrapComponent } from './bootstrap.component';
|
||||
|
||||
describe('BootstrapComponent', () => {
|
||||
let component: BootstrapComponent;
|
||||
let fixture: ComponentFixture<BootstrapComponent>;
|
||||
|
||||
beforeEach(waitForAsync(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ BootstrapComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
}));
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(BootstrapComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user