42473e1a8a
-combine the features of the two previous commits -add prettier and pretty-quick -more routing and logout button
25 lines
653 B
TypeScript
25 lines
653 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { SiteComponent } from './site.component';
|
|
|
|
describe('SiteComponent', () => {
|
|
let component: SiteComponent;
|
|
let fixture: ComponentFixture<SiteComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [SiteComponent]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(SiteComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|