123456789101112131415161718192021222324252627282930313233343536373839 |
- import {mountWithTheme, screen} from 'sentry-test/reactTestingLibrary';
- import PipelineView from 'app/views/integrationPipeline/pipelineView';
- function MockAwsLambdaProjectSelect() {
- return <div>mock_AwsLambdaProjectSelect</div>;
- }
- jest.mock(
- 'app/views/integrationPipeline/awsLambdaProjectSelect',
- () => MockAwsLambdaProjectSelect
- );
- describe('PipelineView', () => {
- it('renders awsLambdaProjectSelect', async () => {
- mountWithTheme(
- <PipelineView pipelineName="awsLambdaProjectSelect" someField="someVal" />,
- {context: TestStubs.routerContext()}
- );
- await screen.findByText('mock_AwsLambdaProjectSelect');
- expect(document.title).toBe('AWS Lambda Select Project');
- });
- it('errros on invalid pipelineName', () => {
- jest.spyOn(console, 'error');
- // eslint-disable-next-line no-console
- console.error.mockImplementation(() => {});
- expect(() => mountWithTheme(<PipelineView pipelineName="other" />)).toThrow(
- 'Invalid pipeline name other'
- );
- // eslint-disable-next-line no-console
- console.error.mockRestore();
- });
- });
|