synapse-admin/tests/features/home/App.test.js

12 lines
317 B
JavaScript
Raw Normal View History

import React from 'react';
import { shallow } from 'enzyme';
import { App } from '../../../src/features/home';
describe('home/App', () => {
it('renders node with correct class name', () => {
const renderedComponent = shallow(<App />);
expect(renderedComponent.find('.home-app').length).toBe(1);
});
});