1234567891011121314151617181920212223242526272829303132333435363738 |
- // The pipeline view renders a Router inside of it and
- // does not need the providers provided by our wrapped render function.
- // Use the original to avoid doubling up.
- // eslint-disable-next-line no-restricted-imports
- import {render, screen} from '@testing-library/react';
- import PipelineView from 'sentry/views/integrationPipeline/pipelineView';
- function MockAwsLambdaProjectSelect() {
- return <div>mock_AwsLambdaProjectSelect</div>;
- }
- jest.mock(
- 'sentry/views/integrationPipeline/awsLambdaProjectSelect',
- () => MockAwsLambdaProjectSelect
- );
- describe('PipelineView', () => {
- afterEach(() => {
- jest.restoreAllMocks();
- });
- it('renders awsLambdaProjectSelect', () => {
- render(<PipelineView pipelineName="awsLambdaProjectSelect" someField="someVal" />);
- expect(screen.getByText('mock_AwsLambdaProjectSelect')).toBeInTheDocument();
- expect(document.title).toBe('AWS Lambda Select Project');
- });
- it('errros on invalid pipelineName', () => {
- jest.spyOn(console, 'error').mockImplementation(() => {});
- expect(() => render(<PipelineView pipelineName="other" />)).toThrow(
- 'Invalid pipeline name other'
- );
- });
- });
|