Remove unused test files

This commit is contained in:
Bálint Bokros
2018-01-11 11:22:57 +01:00
committed by Bokros Bálint
parent bbe40e3d72
commit 8187f11068
8 changed files with 0 additions and 182 deletions

View File

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