Skip to content

Commit

Permalink
removing test function
Browse files Browse the repository at this point in the history
  • Loading branch information
gmbronco committed Jun 26, 2024
1 parent dd945e7 commit 178aae8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
7 changes: 0 additions & 7 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -604,13 +604,6 @@ export class BalancerPoolsAPI extends Stack {
updatePrices.addMethod('POST', updateTokenPricesIntegration);
addCorsOptions(updatePrices);

const test = api.root.addResource('test');
const testFunction = new NodejsFunction(this, 'testFunction', {
entry: join(__dirname, 'src', 'lambdas', 'test-function.ts'),
...nodeJsFunctionProps,
});
test.addMethod('GET', new LambdaIntegration(testFunction));

const sor = api.root.addResource('sor');
const sorOnChain = sor.addResource('{chainId}');
sorOnChain.addMethod('POST', runSORIntegration, {
Expand Down
6 changes: 0 additions & 6 deletions src/lambdas/test-function.ts

This file was deleted.

0 comments on commit 178aae8

Please sign in to comment.