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