Skip to content

Commit

Permalink
test: use new testing library paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Sep 12, 2023
1 parent da4ccce commit b17ccfd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/components/complete_registration.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import React from 'react';
import { BrowserRouter } from 'react-router-dom';
import { fireEvent, render, screen } from '@testing-library/react';
import '@testing-library/jest-dom/extend-expect';
import '@testing-library/jest-dom';
import CompleteRegistration from '../../src/components/complete-registration';


Expand Down
2 changes: 1 addition & 1 deletion test/components/confirm_email.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import React from 'react';
import { BrowserRouter } from 'react-router-dom';
import { render, screen, waitFor } from '@testing-library/react';
import '@testing-library/jest-dom/extend-expect';
import '@testing-library/jest-dom';
import ConfirmEmail from '../../src/components/confirm-email';


Expand Down
2 changes: 1 addition & 1 deletion test/components/forgot_password.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import React from 'react';
import { BrowserRouter } from 'react-router-dom';
import { fireEvent, render, screen } from '@testing-library/react';
import '@testing-library/jest-dom/extend-expect';
import '@testing-library/jest-dom';
import noop from '@stdlib/utils/noop';
import ForgotPassword from '../../src/components/forgot-password';

Expand Down
2 changes: 1 addition & 1 deletion test/components/login.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import React from 'react';
import { BrowserRouter } from 'react-router-dom';
import { fireEvent, render, screen } from '@testing-library/react';
import '@testing-library/jest-dom/extend-expect';
import '@testing-library/jest-dom';
import noop from '@stdlib/utils/noop';
import Login from './../../src/components/login';

Expand Down
2 changes: 1 addition & 1 deletion test/components/signup.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import React from 'react';
import { BrowserRouter } from 'react-router-dom';
import { fireEvent, render, screen } from '@testing-library/react';
import '@testing-library/jest-dom/extend-expect';
import '@testing-library/jest-dom';
import noop from '@stdlib/utils/noop';
import Signup from './../../src/components/signup';

Expand Down

0 comments on commit b17ccfd

Please sign in to comment.