eduardomoroni/mtgx

View on GitHub
__tests__/unit/src/modules/authentication/components/__snapshots__/emailPasswordForm.test.js.snap

Summary

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

exports[`<EmailPasswordForm /> should have a snapshot 1`] = `
<View>
  <Input
    disabled={false}
    icon="ios-mail-outline"
    onChangeText={[Function]}
    placeholder="I18n.t(EMAIL)"
    status="normal"
    style={
      Array [
        Object {
          "margin": 15,
        },
      ]
    }
    value=""
  />
  <Input
    disabled={false}
    icon="ios-lock-outline"
    onChangeText={[Function]}
    placeholder="I18n.t(PASSWORD)"
    status="normal"
    style={
      Array [
        Object {
          "margin": 15,
        },
      ]
    }
    value=""
  />
  <Button
    activeOpacity={0.8}
    disabled={false}
    disabledStyle={
      Object {
        "opacity": 0.3,
      }
    }
    iconPosition="right"
    kind="squared"
    onLongPress={[Function]}
    onPress={[Function]}
    onPressIn={[Function]}
    onPressOut={[Function]}
    style={
      Array [
        Object {
          "margin": 15,
        },
      ]
    }
    type="success"
    uppercase={true}
  >
    TEST LABEL
  </Button>
</View>
`;