Skip to content

Commit

Permalink
feat: updates graphql version to trigger release
Browse files Browse the repository at this point in the history
  • Loading branch information
braposo committed Apr 28, 2019
1 parent f7bd3c9 commit dd58628
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/__tests__/schema.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ describe("Schema", () => {
}
`;

await expect(graphql(mockSchema, query)).resolves.toEqual({ data: { version: "1" } });
await expect(graphql(mockSchema, query)).resolves.toEqual({ data: { version: "1.4" } });
});
});
2 changes: 1 addition & 1 deletion src/schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const typeDefs = [
const resolvers = {
DateTime: GraphQLDateTime,
Query: {
version: () => "1",
version: () => "1.4",
},
};

Expand Down

0 comments on commit dd58628

Please sign in to comment.