From ecdee37c130bf280a0a5f8fbdbb701b5f269f5c7 Mon Sep 17 00:00:00 2001 From: Tim Griesser Date: Mon, 21 Sep 2020 17:33:00 -0400 Subject: [PATCH] Remove extraneous e2e test --- .../__tests__/hoistOrder.test.js | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 e2e/babel-plugin-jest-hoist/__tests__/hoistOrder.test.js diff --git a/e2e/babel-plugin-jest-hoist/__tests__/hoistOrder.test.js b/e2e/babel-plugin-jest-hoist/__tests__/hoistOrder.test.js deleted file mode 100644 index 5fe684947e1d..000000000000 --- a/e2e/babel-plugin-jest-hoist/__tests__/hoistOrder.test.js +++ /dev/null @@ -1,21 +0,0 @@ -/** - * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - * - */ - -'use strict'; - -import a from '../__test_modules__/a'; - -// These will all be hoisted above imports -jest.enableAutomock(); -jest.disableAutomock(); - -describe('babel-plugin-jest-hoist', () => { - it('preserves hoist order of disableAutomock & enableAutomock', () => { - expect(a._isMockFunction).toBe(undefined); - }); -});