Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ lint:
NOTICE.txt: go.mod
@bash ./scripts/notice.sh

.PHONY: check-linceses
.PHONY: check-licenses
check-licenses:
@go run github.com/elastic/go-licenser@$(GO_LICENSER_VERSION) -d -exclude tf -exclude testing .
@go run github.com/elastic/go-licenser@$(GO_LICENSER_VERSION) -d -exclude tf -exclude testing -ext .java .
@go run github.com/elastic/go-licenser@$(GO_LICENSER_VERSION) -d -exclude tf -exclude testing -ext .js .
@go run github.com/elastic/go-licenser@$(GO_LICENSER_VERSION) -d -exclude tf -exclude testing -exclude e2e-testing .
@go run github.com/elastic/go-licenser@$(GO_LICENSER_VERSION) -d -exclude tf -exclude testing -exclude e2e-testing -ext .java .
@go run github.com/elastic/go-licenser@$(GO_LICENSER_VERSION) -d -exclude tf -exclude testing -exclude e2e-testing -ext .js .


.PHONY: check-notice
Expand Down
2 changes: 1 addition & 1 deletion e2e-testing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ In order to run the Lambda functions locally, the following dependencies must be
## Run

```shell
cd apm-lambda-extension/e2e-testing
cd e2e-testing
go test
```

Expand Down
10 changes: 1 addition & 9 deletions e2e-testing/sam-nodejs/sam-testing-nodejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,6 @@
"author": "SAM CLI",
"license": "MIT",
"dependencies": {
"axios": "^0.28.1",
"elastic-apm-node": "^3.26.0"
},
"scripts": {
"test": "mocha tests/unit/"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.2.1"
"elastic-apm-node": "^4.11.0"
}
}
2 changes: 1 addition & 1 deletion e2e-testing/sam-nodejs/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Resources:
Timeout: !Ref TimeoutParam
CodeUri: sam-testing-nodejs/
Handler: app.lambdaHandler
Runtime: nodejs14.x
Runtime: nodejs22.x
Layers:
- !Ref ElasticAPMExtensionLayer
Architectures:
Expand Down