diff --git a/.golangci.yml b/.golangci.yml index a46e8ee..8fb80d3 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -31,6 +31,7 @@ linters: - errcheck - exportloopref - exhaustive + - ginkgolinter - goconst - gocritic - gofmt diff --git a/.vscode/settings.json b/.vscode/settings.json index bcfed64..16ba0a4 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -16,6 +16,7 @@ "exportloopref", "extendio", "fieldalignment", + "ginkgolinter", "gobby", "goconst", "gocritic", diff --git a/async/worker-pool_test.go b/async/worker-pool_test.go index 259a09b..85b732a 100644 --- a/async/worker-pool_test.go +++ b/async/worker-pool_test.go @@ -170,6 +170,10 @@ var _ = Describe("WorkerPool", func() { }) Context("and: Cancelled", func() { + It("should test something", func() { // It is ginkgo test case function + Expect(audience).To(HaveLen(14)) + }) + It("🧪 should: handle cancellation and shutdown cleanly", func(_ SpecContext) { })