From 9fce05d08bdc3878dccbc09981d155a865676474 Mon Sep 17 00:00:00 2001 From: Thomas Neirynck Date: Fri, 18 Sep 2020 11:27:31 -0400 Subject: [PATCH] add snapshot --- .../resolution_editor.test.tsx.snap | 73 +++++++++++++++++++ .../resolution_editor.test.tsx | 4 +- 2 files changed, 75 insertions(+), 2 deletions(-) create mode 100644 x-pack/plugins/maps/public/classes/sources/es_geo_grid_source/__snapshots__/resolution_editor.test.tsx.snap diff --git a/x-pack/plugins/maps/public/classes/sources/es_geo_grid_source/__snapshots__/resolution_editor.test.tsx.snap b/x-pack/plugins/maps/public/classes/sources/es_geo_grid_source/__snapshots__/resolution_editor.test.tsx.snap new file mode 100644 index 00000000000000..ca9775594a9d73 --- /dev/null +++ b/x-pack/plugins/maps/public/classes/sources/es_geo_grid_source/__snapshots__/resolution_editor.test.tsx.snap @@ -0,0 +1,73 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`resolution editor should add super-fine option 1`] = ` + + + +`; + +exports[`resolution editor should omit super-fine option 1`] = ` + + + +`; diff --git a/x-pack/plugins/maps/public/classes/sources/es_geo_grid_source/resolution_editor.test.tsx b/x-pack/plugins/maps/public/classes/sources/es_geo_grid_source/resolution_editor.test.tsx index 909dd210593ff6..fe4b215912955b 100644 --- a/x-pack/plugins/maps/public/classes/sources/es_geo_grid_source/resolution_editor.test.tsx +++ b/x-pack/plugins/maps/public/classes/sources/es_geo_grid_source/resolution_editor.test.tsx @@ -19,11 +19,11 @@ const defaultProps = { describe('resolution editor', () => { test('should omit super-fine option', async () => { - const component = shallow(); + const component = shallow(); expect(component).toMatchSnapshot(); }); test('should add super-fine option', async () => { - const component = shallow(); + const component = shallow(); expect(component).toMatchSnapshot(); }); });