Add control for errors.

This commit is contained in:
Paulo Gustavo Veiga
2022-12-04 22:03:55 -08:00
parent 3a505224f6
commit 0246851f41
3 changed files with 20 additions and 16 deletions

View File

@ -5,9 +5,9 @@ Cypress.on('window:before:load', (win) => {
cy.spy(win.console, 'warn');
});
// // afterEach(() => {
// // cy.window().then((win) => {
// // expect(win.console.error).to.have.callCount(0);
// // expect(win.console.warn).to.have.callCount(0);
// // });
// afterEach(() => {
// cy.window().then((win) => {
// expect(win.console.error).to.have.callCount(0);
// expect(win.console.warn).to.have.callCount(0);
// });
// });

View File

@ -88,7 +88,7 @@ const Editor = ({
model.registerEvents(setCanvasUpdate, capability);
})
.catch((e) => {
console.error(e);
console.error(JSON.stringify(e));
window.newrelic?.noticeError(
new Error(`Unexpected error loading map ${mapInfo.getId()} = ${JSON.stringify(e)}`),
);