You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 26, 2024. It is now read-only.
Gist of it is that karma reports "failed to proxy [file] (socket hang up)" when I try to use templateUrl in a component. Just changing app.component.ts to the following (and creating the html file under app) will make it fail:
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
//template: `<h1>Hello {{name}}</h1>`,
templateUrl: "app/test.html"
})
export class AppComponent { name = 'Angular'; }