ファイルに無視を配置せずにこのエラーを修正する方法はありますか?
コマンド実行時のエラー:
./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
テスト:
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;
});
});
あなたはおそらくこれを意味しましたか:
expect(testAppComponent instanceof AppComponent).toBe(true);
そこにある式は、一連のプロパティにアクセスするだけです。実際に何かを実行するには、何らかの関数呼び出しが必要です。