From aff95067920fd3cc0b77adbce256cf8cc517314a Mon Sep 17 00:00:00 2001 From: Spencer Date: Wed, 2 Sep 2020 15:05:33 -0700 Subject: [PATCH] [7.x] [canvas] remove unused file (#76295) (#76560) Co-authored-by: spalger --- x-pack/plugins/canvas/public/__tests__/setup.js | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 x-pack/plugins/canvas/public/__tests__/setup.js diff --git a/x-pack/plugins/canvas/public/__tests__/setup.js b/x-pack/plugins/canvas/public/__tests__/setup.js deleted file mode 100644 index 1792397d0614e..0000000000000 --- a/x-pack/plugins/canvas/public/__tests__/setup.js +++ /dev/null @@ -1,15 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License; - * you may not use this file except in compliance with the Elastic License. - */ - -import enzyme from 'enzyme'; -import Adapter from 'enzyme-adapter-react-16'; - -// this will run before any code that's inside a describe block -// so we can use it to set up whatever we need for our browser tests -before(() => { - // configure enzume - enzyme.configure({ adapter: new Adapter() }); -});