Fixed tests

Fixed incorrect fixtures path
This commit is contained in:
Rish 2020-04-28 13:12:11 +05:30
parent c86550a68f
commit c3907f24dd
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
import React from 'react';
import {render, fireEvent} from '../../utils/tests';
import AccountHomePage from './AccountHomePage';
import {member} from '../../test/fixtures/data';
import {member} from '../../utils/fixtures';
const setup = (overrides) => {
const freeMember = member.free;

View File

@ -2,7 +2,7 @@
import React from 'react';
import {render} from '@testing-library/react';
import {ParentContext} from '../components/ParentContext';
import {site, member} from '../test/fixtures/data';
import {site, member} from './fixtures';
const setupProvider = (context) => {
return ({children}) => {