123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`StreamGroup renders with anchors 1`] = `
- <Group
- align="center"
- onClick={[Function]}
- px={0}
- py={1}
- >
- <GroupCheckbox
- ml={2}
- >
- <GuideAnchor
- target="issues"
- type="text"
- />
- <GroupCheckBox
- id="1337"
- />
- </GroupCheckbox>
- <GroupSummary
- flex="1"
- ml={1}
- mr={1}
- w={
- Array [
- 0.6666666666666666,
- 0.6666666666666666,
- 0.5,
- ]
- }
- >
- <withRouter(EventOrGroupHeader)
- data={
- Object {
- "assignedTo": null,
- "id": "1337",
- "project": Object {
- "id": "13",
- "slug": "test",
- },
- "stats": Object {
- "24h": Array [
- Array [
- 1517281200,
- 2,
- ],
- Array [
- 1517310000,
- 1,
- ],
- ],
- "30d": Array [
- Array [
- 1514764800,
- 1,
- ],
- Array [
- 1515024000,
- 122,
- ],
- ],
- },
- "tags": Array [],
- "type": "error",
- }
- }
- />
- <withRouter(EventOrGroupExtraDetails)
- assignedTo={null}
- id="1337"
- project={
- Object {
- "id": "13",
- "slug": "test",
- }
- }
- stats={
- Object {
- "24h": Array [
- Array [
- 1517281200,
- 2,
- ],
- Array [
- 1517310000,
- 1,
- ],
- ],
- "30d": Array [
- Array [
- 1514764800,
- 1,
- ],
- Array [
- 1515024000,
- 122,
- ],
- ],
- }
- }
- tags={Array []}
- type="error"
- />
- </GroupSummary>
- <Box
- className="hidden-xs hidden-sm"
- mx={2}
- w={160}
- >
- <GroupChart
- data={
- Object {
- "assignedTo": null,
- "id": "1337",
- "project": Object {
- "id": "13",
- "slug": "test",
- },
- "stats": Object {
- "24h": Array [
- Array [
- 1517281200,
- 2,
- ],
- Array [
- 1517310000,
- 1,
- ],
- ],
- "30d": Array [
- Array [
- 1514764800,
- 1,
- ],
- Array [
- 1515024000,
- 122,
- ],
- ],
- },
- "tags": Array [],
- "type": "error",
- }
- }
- id="1337"
- statsPeriod="24h"
- />
- </Box>
- <Flex
- justify="flex-end"
- mx={2}
- w={
- Array [
- 40,
- 60,
- 80,
- 80,
- ]
- }
- >
- <GuideAnchor
- target="events"
- type="text"
- />
- <StyledCount />
- </Flex>
- <Flex
- justify="flex-end"
- mx={2}
- w={
- Array [
- 40,
- 60,
- 80,
- 80,
- ]
- }
- >
- <GuideAnchor
- target="users"
- type="text"
- />
- <StyledCount />
- </Flex>
- <Box
- className="hidden-xs hidden-sm"
- mx={2}
- w={80}
- >
- <AssigneeSelector
- id="1337"
- />
- </Box>
- </Group>
- `;
|