Visual Studio Code を使用しており、Angular の Nrwl.Nx ワークスペース内で Jest テストをデバッグしようとしています。
これが私がこれまでに試したことです:
launch.json
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Jest All Tests",
"program": "${workspaceFolder}/src/Web/Finance/client-app/node_modules/.bin/jest",
"args": ["--runInBand"],
"cwd": "${workspaceFolder}/src/Web/Finance/client-app/apps/finance",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true,
"windows": {
"program": "${workspaceFolder}/src/Web/Finance/client-app/node_modules/jest/bin/jest"
}
}
]
}
app.component.spec.ts
import { TestBed, async } from '@angular/core/testing';
import { AppComponent } from './app.component';
import 'zone.js/dist/zone.js';
import 'zone.js/dist/async-test.js';
import 'zone.js/dist/proxy.js';
describe('AppComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [AppComponent],
}).compileComponents();
}));
it('should create the app', async(() => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.debugElement.componentInstance;
expect(app).toBeTruthy();
}));
});
最初は、zone.js/dist から何もインポートせずに app.component.spec.ts テストを実行しましたが、VS Code でデバッガーを実行すると、次のようになります。
Failed: "Zone is needed for the async() test helper but could not be found. Please make sure that your environment includes zone.js/dist/zone.js"
app.component.spec.ts にある zone.js/dist ファイルをインポートしました。
VS Code でデバッガーを実行すると、次のようになります。
Expected to be running in 'ProxyZone', but it was not found.
at Function.Object.<anonymous>.ProxyZoneSpec.assertPresent (../../node_modules/zone.js/dist/proxy.js:42:19)
at runInTestZone (../../node_modules/zone.js/dist/async-test.js:202:23)
at Object.<anonymous> (../../node_modules/zone.js/dist/async-test.js:168:17)
インターネット検索を行っても、このエラーのトラブルシューティング方法に関する情報は得られませんでした。