运行 tslint 时,角度单元测试中的“未使用的表达式,需要赋值或函数调用”

bob*_*e01 6 lint typescript angular

有没有办法解决这个错误而不必在文件中放置一个忽略?

运行命令时出错:

./node_modules/tslint/bin/tslint -p src/tsconfig.json --type-check src/app/app.component.spec.ts
[21, 5]: unused expression, expected an assignment or function call
Run Code Online (Sandbox Code Playgroud)

测试:

let chai = require('chai');
let expect = chai.expect;

import { AppComponent } from './app.component';

import { ComponentFixture, TestBed } from '@angular/core/testing';

describe('AppComponent', function() {
  let testAppComponent: AppComponent;
  let fixture: ComponentFixture<AppComponent>;

  beforeEach(() => {
    TestBed.configureTestingModule({
      declarations: [AppComponent]
    });
    fixture = TestBed.createComponent(AppComponent);
    testAppComponent = fixture.componentInstance;
  });

  it('should create the correct component', () => {
    expect(testAppComponent instanceof AppComponent).to.be.true;
  });
});
Run Code Online (Sandbox Code Playgroud)

Dun*_*can 5

你可能是这个意思:

expect(testAppComponent instanceof AppComponent).toBe(true);
Run Code Online (Sandbox Code Playgroud)

你在那里的表达式只是访问一堆属性,你需要某种函数调用才能真正做任何事情。

  • 用这个`.to.equal(true);` (3认同)