Skip to content

Commit

Permalink
fix test schema file name
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskalmar committed Jan 27, 2021
1 parent dbe164c commit 7f5c30a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/db.ts
Expand Up @@ -84,7 +84,7 @@ export const disconnectDB = async () => {

export const initGraphQLSchema = (): void => {
graphqlSchema = generateGraphQLSchema(configuration);
writeFileSync('./test-schema.gql', printSchema(graphqlSchema), 'utf8');
writeFileSync('./test-schema.graphql', printSchema(graphqlSchema), 'utf8');
};

export async function testGraphql(
Expand Down

0 comments on commit 7f5c30a

Please sign in to comment.