test-me
Version:
My test component
12 lines (9 loc) • 322 B
text/typescript
/* tslint:disable:no-unused-variable */
import { TestBed, async } from '@angular/core/testing';
import { TestMeComponent } from './test-me.component';
describe('Component: TestMe', () => {
it('should create an instance', () => {
let component = new TestMeComponent();
expect(component).toBeTruthy();
});
});