From 74153558102c543e53c7ca0d12983ec9642c4ee5 Mon Sep 17 00:00:00 2001 From: Neenad Ingole Date: Thu, 15 Sep 2022 21:55:20 +0200 Subject: [PATCH] docs(contributing): update the command to run tests (#297) --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2d4cbbc9..ca1773fc 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -11,5 +11,5 @@ For every Pull Request on GitHub and on the main branch the coverage data will g You can use the `BROWSER` environment variable to use a different browser than Chromium for the tests and use the `HEADLESS` environment variable which is useful for debugging. ``` -BROWSER=chromium HEADLESS=1 go test -v --race +BROWSER=chromium HEADLESS=1 go test -v --race ./... ```