crane-cloud/frontend

View on GitHub
src/pages/AdminLogsPage/AdminLogsPage.test.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import { shallow } from 'enzyme';
import AdminLogsPage from './';

describe('AdminLogsPage', () => {
  it('renders without crashing', () => {
    shallow(<AdminLogsPage />);
  });
  
  it('matches the snapshot', () => {
    const wrapper = shallow(<AdminLogsPage />);
    expect(wrapper).toMatchSnapshot();
  });
  

});