Sengi-Windows-MacOS-Linux/src/app/components/floating-column/add-new-status/add-new-status.component.sp...

26 lines
697 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { AddNewAccountComponent } from '../add-new-account/add-new-account.component';
xdescribe('AddNewAccountComponent', () => {
let component: AddNewAccountComponent;
let fixture: ComponentFixture<AddNewAccountComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ AddNewAccountComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(AddNewAccountComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});