我很高兴在Angular 2中使用Karma / Jasmine测试模块。在测试过程中,我不断收到关于我的组件/服务结尾的代码的尾随空格警告。以下是我得到的错误示例。有人能指出我做错了什么,因为它看起来很好吗?
控制台警告
WARNING in ./src/app/shared/nav.service.ts
[14, 45]: trailing whitespace
[15, 4]: trailing whitespace
服务
import { Injectable } from '@angular/core';
import { Subject } from 'rxjs/Subject';
@Injectable()
export class NavService {
private navAnnouncedSource = new Subject <string>();
// Observable string streams
// Return as observale to encapsulate the subject
navAnnouncedSource$ = this.navAnnouncedSource.asObservable();
currentView: string = null;
constructor() { }
// Service message commands
announceNav(component: string) {
this.navAnnouncedSource.next(component);
}
}
答案 0 :(得分:3)
第14行和第15行末尾有空格。
删除它们。