diff --git a/src/components/error_boundary/__snapshots__/error_boundary.test.js.snap b/src/components/error_boundary/__snapshots__/error_boundary.test.js.snap index 5115bd4559b..5124b9ba82a 100644 --- a/src/components/error_boundary/__snapshots__/error_boundary.test.js.snap +++ b/src/components/error_boundary/__snapshots__/error_boundary.test.js.snap @@ -17,7 +17,9 @@ exports[`EuiErrorBoundary is rendered with an error 1`] = `
diff --git a/src/components/error_boundary/error_boundary.test.js b/src/components/error_boundary/error_boundary.test.js index 989e0ccfc11..8ece71c12e7 100644 --- a/src/components/error_boundary/error_boundary.test.js +++ b/src/components/error_boundary/error_boundary.test.js @@ -12,7 +12,7 @@ const GoodComponent = () => ( ); const BadComponent = () => { - throw new Error('Terrible error!'); + throw new Error('I\'m here to kick butt and chew bubblegum.\n\n\And I\'m all out of gum.'); }; describe('EuiErrorBoundary', () => {- Error: Terrible error! + Error: I'm here to kick butt and chew bubblegum. + +And I'm all out of gum.