Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 5 additions & 1 deletion docs/modules/gcloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ The BigQuery emulator is by [Masaaki Goshima](https://github.com/goccy) and uses
The Cloud Spanner emulator container wraps Google's official emulator image. It exposes gRPC and HTTP ports, and provides a `helper` for instance/database operations.

<!--codeinclude-->
[Starting a Spanner Emulator container and exposing endpoints](../../packages/modules/gcloud/src/spanner-emulator-container.test.ts) inside_block:startup
[Starting a Spanner Emulator container and exposing endpoints using projectId and SPANNER_EMULATOR_HOST](../../packages/modules/gcloud/src/spanner-emulator-container.test.ts) inside_block:startupWithEnvironmentVariable
<!--/codeinclude-->

<!--codeinclude-->
[Starting a Spanner Emulator container and exposing endpoints using explicitly configured client](../../packages/modules/gcloud/src/spanner-emulator-container.test.ts) inside_block:startupWithExplicitClient
<!--/codeinclude-->

<!--codeinclude-->
Expand Down
94 changes: 12 additions & 82 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/modules/gcloud/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"build": "tsc --project tsconfig.build.json"
},
"dependencies": {
"@grpc/grpc-js": "^1.13.4",
"testcontainers": "^11.2.1"
},
"devDependencies": {
Expand Down
Loading