redbadger/pride-london-app

View on GitHub
src/screens/ParadeGroupsScreen/__snapshots__/ParadeGroupDetails.test.js.snap

Summary

Maintainability
Test Coverage
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`renders correctly with all fields 1`] = `
<View
  style={
    Object {
      "paddingBottom": 10,
      "paddingTop": 16,
    }
  }
>
  <Text
    color="blackColor"
    markdown={false}
    markdownStyle={Object {}}
    style={
      Object {
        "paddingTop": 4,
      }
    }
    type="h3"
  >
    A Test Parade Group
  </Text>
  <View
    style={
      Object {
        "alignItems": "flex-start",
      }
    }
  >
    <Touchable
      accessibilityComponentType="button"
      accessibilityTraits={
        Array [
          "button",
        ]
      }
      delayPressIn={50}
      onPress={[Function]}
    >
      <TextLink>
        Facebook Page
      </TextLink>
    </Touchable>
    <Touchable
      accessibilityComponentType="button"
      accessibilityTraits={
        Array [
          "button",
        ]
      }
      delayPressIn={50}
      onPress={[Function]}
    >
      <TextLink>
        Twitter Profile
      </TextLink>
    </Touchable>
    <Touchable
      accessibilityComponentType="button"
      accessibilityTraits={
        Array [
          "button",
        ]
      }
      delayPressIn={50}
      onPress={[Function]}
    >
      <TextLink>
        Website
      </TextLink>
    </Touchable>
  </View>
</View>
`;

exports[`renders correctly with missing fields 1`] = `
<View
  style={
    Object {
      "paddingBottom": 10,
      "paddingTop": 16,
    }
  }
>
  <Text
    color="blackColor"
    markdown={false}
    markdownStyle={Object {}}
    style={
      Object {
        "paddingTop": 4,
      }
    }
    type="h3"
  >
    Test Parade Group
  </Text>
  <View
    style={
      Object {
        "alignItems": "flex-start",
      }
    }
  />
</View>
`;