aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorRobin Westerik <64894343+robinwesterik@users.noreply.github.com>2023-03-03 16:20:53 +0700
committerGitHub <noreply@github.com>2023-03-03 10:20:53 +0100
commit7cde99a7a708761937b051cb9e4ddc9e4f35796a (patch)
tree7496220e23c77e0212304408d45eb71658753538 /cmd
parent6b1c9eafa97cb02dd902ddbf2676c709c86f9625 (diff)
Updated instructions and references to monolith to their new names (#2994)
Currently, the documentation makes use of the old names for the binary and configuration files. This updates the documentation so that users can follow the guide without issues again. These changes don't require any go unit tests because it does not modify any golang code. Signed-off-by: `Robin Westerik <gh@westerik.me>`
Diffstat (limited to 'cmd')
-rw-r--r--cmd/dendrite/main_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/dendrite/main_test.go b/cmd/dendrite/main_test.go
index efa1a926..d51bc743 100644
--- a/cmd/dendrite/main_test.go
+++ b/cmd/dendrite/main_test.go
@@ -9,7 +9,7 @@ import (
)
// This is an instrumented main, used when running integration tests (sytest) with code coverage.
-// Compile: go test -c -race -cover -covermode=atomic -o monolith.debug -coverpkg "github.com/matrix-org/..." ./cmd/dendrite-monolith-server
+// Compile: go test -c -race -cover -covermode=atomic -o monolith.debug -coverpkg "github.com/matrix-org/..." ./cmd/dendrite
// Run the monolith: ./monolith.debug -test.coverprofile=/somewhere/to/dump/integrationcover.out DEVEL --config dendrite.yaml
// Generate HTML with coverage: go tool cover -html=/somewhere/where/there/is/integrationcover.out -o cover.html
// Source: https://dzone.com/articles/measuring-integration-test-coverage-rate-in-pouchc