@elastic/elasticsearch 8.5.0 → 8.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Makefile ADDED
@@ -0,0 +1,11 @@
1
+ .PHONY: integration-setup
2
+ integration-setup: integration-cleanup
3
+ DETACH=true .ci/run-elasticsearch.sh
4
+
5
+ .PHONY: integration-cleanup
6
+ integration-cleanup:
7
+ docker container rm --force --volumes instance || true
8
+
9
+ .PHONY: integration
10
+ integration: integration-setup
11
+ npm run test:integration