123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`InactivePlugins renders null when no plugins 1`] = `""`;
- exports[`InactivePlugins renders plugins list 1`] = `
- <Panel>
- <PanelHeader>
- Inactive Integrations
- </PanelHeader>
- <PanelBody
- direction="column"
- disablePadding={true}
- flex={false}
- >
- <Flex
- flex="1"
- p={1}
- wrap="wrap"
- >
- <Box
- key="amazon-sqs"
- m={1}
- >
- <IntegrationButton
- className="ref-plugin-enable-amazon-sqs"
- onClick={[Function]}
- >
- <Flex
- align="center"
- justify="center"
- >
- <Flex
- align="center"
- mr={1}
- >
- <PluginIcon
- pluginId="amazon-sqs"
- size={20}
- />
- </Flex>
- <TextOverflow>
- Amazon SQS
- </TextOverflow>
- </Flex>
- </IntegrationButton>
- </Box>
- <Box
- key="github"
- m={1}
- >
- <IntegrationButton
- className="ref-plugin-enable-github"
- onClick={[Function]}
- >
- <Flex
- align="center"
- justify="center"
- >
- <Flex
- align="center"
- mr={1}
- >
- <PluginIcon
- pluginId="github"
- size={20}
- />
- </Flex>
- <TextOverflow>
- GitHub
- </TextOverflow>
- </Flex>
- </IntegrationButton>
- </Box>
- <Box
- key="hidden-plugin"
- m={1}
- >
- <IntegrationButton
- className="ref-plugin-enable-hidden-plugin"
- onClick={[Function]}
- >
- <Flex
- align="center"
- justify="center"
- >
- <Flex
- align="center"
- mr={1}
- >
- <PluginIcon
- pluginId="hidden-plugin"
- size={20}
- />
- </Flex>
- <TextOverflow>
- Hidden Plugin
- </TextOverflow>
- </Flex>
- </IntegrationButton>
- </Box>
- </Flex>
- </PanelBody>
- </Panel>
- `;
|