Skip to content

Commit

Permalink
remove unused const
Browse files Browse the repository at this point in the history
  • Loading branch information
stephmilovic committed May 7, 2020
1 parent b3b421f commit fd8f5c9
Showing 1 changed file with 0 additions and 31 deletions.
31 changes: 0 additions & 31 deletions x-pack/test/case_api_integration/common/lib/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,34 +68,3 @@ export const deleteConfiguration = async (es: any): Promise<void> => {
body: {},
});
};

export const getConnector = () => ({
name: 'ServiceNow Connector',
actionTypeId: '.servicenow',
secrets: {
username: 'admin',
password: 'admin',
},
config: {
apiUrl: 'localhost',
casesConfiguration: {
mapping: [
{
source: 'title',
target: 'short_description',
actionType: 'overwrite',
},
{
source: 'description',
target: 'description',
actionType: 'overwrite',
},
{
source: 'comments',
target: 'comments',
actionType: 'append',
},
],
},
},
});

0 comments on commit fd8f5c9

Please sign in to comment.