Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: Yuri Shkuro <github@ysh.us>
  • Loading branch information
yurishkuro committed Aug 12, 2023
1 parent 60c2854 commit ee87d35
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/jaeger-ui/src/utils/ReactShallowRenderer.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,19 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.

// NOTICE: do not shallow() for snapshot testing if possible.

/* eslint-disable import/no-extraneous-dependencies */
import React from 'react';
import ShallowRenderer from 'react-test-renderer/shallow';
import { isFragment, isLazy, isPortal, isMemo, isSuspense, isForwardRef } from 'react-is';

describe('dummy test', () => {
it('dummy test', () => {
// this file defines a helper module for use in other tests.
});
});

const shallow = (element, options) => {
const localOptions = options === undefined ? {} : options;
const Wrapper = localOptions.Wrapper || null;
Expand Down

0 comments on commit ee87d35

Please sign in to comment.