我正在尝试使用 Sentry 在 ionic 中运行一个简单的测试,我是 Ionic 开发人员的新手,我能够做的只是通过遵循此 doc 来捕获 Ionic 中的错误,但我想将此作为测试运行,我正在尝试在 app.component.spec.ts
文件中运行一些测试
beforeEach(async(() => {
Sentry.init({ dsn: 'https://9f96f00e3307482cad702de5b47f85d1@o613526.ingest.sentry.io/5749220' });
. . .
TestBed.configureTestingModule({
declarations: [AppComponent],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
providers: [
{provide: ErrorHandler, useClass: SentryIonicErrorHandler}
],
}).compileComponents();
}));
it('should rise the error and Log in Sentry', () => {
const i = 4;
expect(i).toEqual(5);
});
在这个测试中它没有登录哨兵仪表板我在这里做错了什么?,我的测试正确吗?