From 3d0c286da56ce5082e859fe8409d52bac6658765 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mi=C5=82osz=20Sm=C3=B3=C5=82ka?= Date: Fri, 30 Aug 2024 10:54:06 +0200 Subject: [PATCH] Fix typo in DEVELOPMENT.md --- DEVELOPMENT.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 65d88ee..5000389 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -1,6 +1,7 @@ ### Testing Locally The tests expect a running instance of PubSub. You can run the emulator specified in the `docker-compose.yml`, then set the correct env variable by running the following: + ``` make up PUBSUB_EMULATOR_HOST=localhost:8085 make test @@ -11,3 +12,4 @@ Running one test: ``` make up PUBSUB_EMULATOR_HOST=localhost:8085 go test -v ./... -run TestPublishSubscribe/TestContinueAfterSubscribeClose +```