film-exif/fixtures/kitchensink/src/features/webpack/LinkedModules.test.js

24 lines
619 B
JavaScript

/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import Inferno from 'inferno';
import InfernoDOM from 'inferno-dom';
import { test, version } from 'test-integrity';
import LinkedModules from './LinkedModules';
describe('linked modules', () => {
it('has integrity', () => {
expect(test());
expect(version() === '2.0.0');
});
it('renders without crashing', () => {
const div = document.createElement('div');
InfernoDOM.render(<LinkedModules />, div);
});
});