Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to use test.mock if result is a Union type #117

Open
fernandohenriques opened this issue Jul 15, 2019 · 1 comment
Open

How to use test.mock if result is a Union type #117

fernandohenriques opened this issue Jul 15, 2019 · 1 comment

Comments

@fernandohenriques
Copy link

fernandohenriques commented Jul 15, 2019

In this example in my code, the query returns always empty:

it('Should return store by id', () => {
   const query = `
     query($id: ID, $slug: String) {
       store(id: $id, slug: $slug) {
         ... on Store {
           id
           name
           slug
         }
       }
     }
   `;

   const fixture = {
     data: {
       store: {
         id: '1',
         name: 'AnyoneStore'
       }
     }
   };

   const variables = {
     id: "1"
   };

   const { data: { store } } = tester.mock({ query, fixture, variables });

  // store
 / / {}
@estrada9166
Copy link
Member

estrada9166 commented Jul 16, 2019

Can you share your schema please, so I can reproduce it locally?

As you can see here it should be working fine for unions.

Also, you can use this codesandbox template to reproduce the test, and we can test it there

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants