forked from tykayn/funky-framadate-front
25 lines
627 B
TypeScript
25 lines
627 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { VisibilityComponent } from './visibility.component';
|
|
|
|
describe('VisibilityComponent', () => {
|
|
let component: VisibilityComponent;
|
|
let fixture: ComponentFixture<VisibilityComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [VisibilityComponent],
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(VisibilityComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|