jest/e2e/browser-resolver/__tests__/test.js

17 lines
350 B
JavaScript

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/* global HTMLDivElement */
'use strict';
const div = require('../fake-pkg');
test('dummy test', () => {
expect(div).toBeInstanceOf(HTMLDivElement);
});