These are chat archives for AngularClass/angular2-webpack-starter
An Angular 2 Webpack Starter kit featuring Angular 2, Router, TypeScript, and Webpack by AngularClass
app/components/todo/todo.ts
how can I import it to my test file which is in test/app/components/todo/todo.spec.ts
import { Todo } from '../../../../src/app/components/Todo/Todo';
describe('App', () => {
var Todo = new Todo();
it('should also be able to test', () => {
expect(true).toBe(true);
});
});