From a87ed75aad56340efa996a5aff1556533d19ee8d Mon Sep 17 00:00:00 2001 From: cchaos Date: Mon, 12 Oct 2020 16:48:54 -0400 Subject: [PATCH] Removing obsolete test --- .../__snapshots__/form_row.test.tsx.snap | 32 ------------------- .../form/form_row/form_row.test.tsx | 22 ------------- 2 files changed, 54 deletions(-) diff --git a/src/components/form/form_row/__snapshots__/form_row.test.tsx.snap b/src/components/form/form_row/__snapshots__/form_row.test.tsx.snap index 9cf34cc1f0f..540698931b0 100644 --- a/src/components/form/form_row/__snapshots__/form_row.test.tsx.snap +++ b/src/components/form/form_row/__snapshots__/form_row.test.tsx.snap @@ -217,21 +217,6 @@ exports[`EuiFormRow is rendered 1`] = ` `; -exports[`EuiFormRow props compressed is rendered 1`] = ` -
-
- -
-
-`; - exports[`EuiFormRow props describedByIds is rendered 1`] = `
`; -exports[`EuiFormRow props displayOnly is rendered 1`] = ` -
-
- - just some text - -
-
-`; - exports[`EuiFormRow props error as array is rendered 1`] = `
{ expect(component).toMatchSnapshot(); }); - test('displayOnly is rendered', () => { - const component = render( - - just some text - - ); - - expect(component).toMatchSnapshot(); - }); - - describe('compressed', () => { - test('is rendered', () => { - const component = render( - - - - ); - - expect(component).toMatchSnapshot(); - }); - }); - describe('display type', () => { DISPLAYS.forEach((display) => { test(`${display} is rendered`, () => {