Skip to content

Commit

Permalink
fix merge errors
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanPan342 committed Jul 30, 2020
1 parent 3bf2fe4 commit 6849e84
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/@aws-cdk/aws-appsync/test/appsync.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ test('appsync should configure pipeline when pipelineConfig has contents', () =>
const api = new appsync.GraphQLApi(stack, 'api', {
authorizationConfig: {},
name: 'api',
schemaDefinition: appsync.SchemaDefinition.FILE,
schemaDefinitionFile: path.join(__dirname, 'appsync.test.graphql'),
});

Expand All @@ -54,6 +55,7 @@ test('appsync should configure resolver as unit when pipelineConfig is empty', (
const api = new appsync.GraphQLApi(stack, 'api', {
authorizationConfig: {},
name: 'api',
schemaDefinition: appsync.SchemaDefinition.FILE,
schemaDefinitionFile: path.join(__dirname, 'appsync.test.graphql'),
});

Expand All @@ -77,6 +79,7 @@ test('appsync should configure resolver as unit when pipelineConfig is empty arr
const api = new appsync.GraphQLApi(stack, 'api', {
authorizationConfig: {},
name: 'api',
schemaDefinition: appsync.SchemaDefinition.FILE,
schemaDefinitionFile: path.join(__dirname, 'appsync.test.graphql'),
});

Expand Down

0 comments on commit 6849e84

Please sign in to comment.