eduardomoroni/mtgx

View on GitHub
__tests__/unit/src/modules/form/components/__snapshots__/textInputForm.test.js.snap

Summary

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

exports[`<TextInputForm /> should have a snapshot 1`] = `
<View
  style={
    Object {
      "alignItems": "center",
      "borderColor": "rgba(0, 0, 0, 0.4)",
      "borderRadius": 3,
      "borderWidth": 1,
      "flexDirection": "row",
      "height": 40,
      "justifyContent": "space-between",
      "marginBottom": 5,
    }
  }
>
  <InputLabel
    label="label"
    onPress={[Function]}
  />
  <TextInput
    autoCapitalize="characters"
    autoCorrect={false}
    keyboardType="default"
    maxLength={5}
    onChangeText={[Function]}
    returnKeyType="next"
    style={
      Object {
        "color": "grey",
        "flex": 1,
        "justifyContent": "flex-end",
      }
    }
    underlineColorAndroid="transparent"
  />
</View>
`;