knowledge base

Testing in Go

  • Running test but with loading variables from .env file
    godotenv -f .env go test ./path/to/the/modules -v
    • -v stands for verbose

#testing #go