phodal/growth

View on GitHub
__tests__/containers/discover/todo-lists/todoLists.test.js

Summary

Maintainability
A
0 mins
Test Coverage
import 'react-native';
import React, {} from 'react';
import renderer from 'react-test-renderer';
import TodoLists from '../../../../src/containers/discover/todo-lists/TodoLists';

it('renders correctly', () => {
  const todoLists = renderer.create(
    <TodoLists />,
  );
  const todoListsJson = todoLists.toJSON();
  expect(todoListsJson).toMatchSnapshot();
});