Inspired by Ginkgotchas and Effective Ginkgo/Gomega. Minimum global variables Try not to use variables outside of the tests. It is possible to shadow variable, it is easy to miss the initial definition. It adds confusion. And if you are using global variables, always assign the value in BeforeEach block. …