fix: aded simple test for sessioninput

made note to migratie to storybook in the future
pull/3083/head
yougotwill 9 months ago
parent bde96d14e2
commit 4a3adaa5e4

@ -8,6 +8,7 @@ import { MemberAvatarPlaceHolder } from '../../components/icon/MemberAvatarPlace
import { TestUtils } from '../test-utils';
import { areResultsEqual, findByDataTestId, renderComponent } from './renderComponent';
// TODO[epic=SES-2418] migrate to Storybook
describe('AvatarPlaceHolder', () => {
const pubkey = TestUtils.generateFakePubKeyStr();
const displayName = 'Hello World';

@ -0,0 +1,27 @@
/* eslint-disable import/no-extraneous-dependencies */
import { cleanup } from '@testing-library/react';
import { expect } from 'chai';
import Sinon from 'sinon';
import { SessionInput } from '../../components/inputs';
import { TestUtils } from '../test-utils';
import { findAllByElementType, renderComponent } from './renderComponent';
// TODO[epic=SES-2418] migrate to Storybook
describe('SessionInput', () => {
beforeEach(() => {
TestUtils.stubSVGElement();
TestUtils.stubWindowLog();
});
afterEach(() => {
Sinon.restore();
cleanup();
});
it('should render an input', async () => {
const result = renderComponent(<SessionInput type="text" />);
const inputElements = findAllByElementType(result, 'input');
expect(inputElements.length, 'should have an input element').to.equal(1);
result.unmount();
});
});

@ -1,6 +1,6 @@
import { AnimatePresence, MotionGlobalConfig } from 'framer-motion';
import { isArray, isEqual, unset } from 'lodash';
import { ReactElement, ReactNode } from 'react';
import { ElementType, ReactElement, ReactNode } from 'react';
import { ErrorBoundary } from 'react-error-boundary';
import TestRenderer from 'react-test-renderer';
import { SessionTheme } from '../../themes/SessionTheme';
@ -39,6 +39,13 @@ function findByDataTestId(
return renderResult.root.findByProps({ 'data-testid': dataTestId });
}
function findAllByElementType(
renderResult: TestRenderer.ReactTestRenderer,
elementType: ElementType
): Array<TestRenderer.ReactTestInstance> {
return renderResult.root.findAllByType(elementType);
}
function areResultsEqual(
renderResult: TestRenderer.ReactTestRenderer,
renderResult2: TestRenderer.ReactTestRenderer,
@ -55,4 +62,10 @@ function areResultsEqual(
return isEqual(renderResult.toJSON(), renderResult2.toJSON());
}
export { areResultsEqual, findByDataTestId, getComponentTree, renderComponent };
export {
areResultsEqual,
findAllByElementType,
findByDataTestId,
getComponentTree,
renderComponent,
};

Loading…
Cancel
Save