believer/movies-graphql-postgres

View on GitHub
lib/graphql/resolvers/mutations/__tests__/__snapshots__/register.spec.js.snap

Summary

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

exports[`mutations/register calls db to check if user exists 1`] = `"SELECT * FROM users WHERE email = 'batman@waynecorp.org'"`;

exports[`mutations/register calls db to insert new user 1`] = `
"
      INSERT INTO users (password, name, email, salt)
      VALUES ('hashpasword', 'Batman', 'batman@waynecorp.org', 'thisissalt')
    "
`;