fix: aded simple test for sessioninput
made note to migratie to storybook in the futurepull/3083/head
parent
bde96d14e2
commit
4a3adaa5e4
@ -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();
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue