RomainMarecat/slate

View on GitHub
projects/laboiteasessions/src/app/pages/homepage/social-network-hook/social-network-hook.component.spec.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
 
import { SocialNetworkHookComponent } from './social-network-hook.component';
 
describe('SocialNetworkHookComponent', () => {
let component: SocialNetworkHookComponent;
let fixture: ComponentFixture<SocialNetworkHookComponent>;
 
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ SocialNetworkHookComponent ]
})
.compileComponents();
}));
 
beforeEach(() => {
fixture = TestBed.createComponent(SocialNetworkHookComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
 
it('should be created', () => {
expect(component).toBeTruthy();
});
});