Added a lot of components
This commit is contained in:
parent
e6f42eaa37
commit
b48ab87cc6
68 changed files with 1030 additions and 8 deletions
23
src/app/pages/blog/blog.page.spec.ts
Normal file
23
src/app/pages/blog/blog.page.spec.ts
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { BlogPage } from './blog.page';
|
||||
|
||||
describe('BlogComponent', () => {
|
||||
let component: BlogPage;
|
||||
let fixture: ComponentFixture<BlogPage>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [BlogPage]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(BlogPage);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue