Fix verification tests types
This commit is contained in:
parent
882e4b2fda
commit
354395501e
2 changed files with 3 additions and 3 deletions
|
@ -14,7 +14,7 @@ const TestableComponent = () => (
|
|||
</Switch>
|
||||
);
|
||||
|
||||
const renderComponent = (store) => render(
|
||||
const renderComponent = (store: any) => render(
|
||||
<TestableComponent />,
|
||||
{},
|
||||
store,
|
||||
|
@ -22,7 +22,7 @@ const renderComponent = (store) => render(
|
|||
);
|
||||
|
||||
describe('<Verification />', () => {
|
||||
let store;
|
||||
let store: any;
|
||||
|
||||
beforeEach(() => {
|
||||
store = {
|
||||
|
|
|
@ -8,7 +8,7 @@ import { fireEvent, render, screen } from 'soapbox/jest/test-helpers';
|
|||
import AgeVerification from '../age-verification';
|
||||
|
||||
describe('<AgeVerification />', () => {
|
||||
let store;
|
||||
let store: any;
|
||||
|
||||
beforeEach(() => {
|
||||
store = {
|
||||
|
|
Loading…
Reference in a new issue