Commit 7fdbb5b

mo khan <mo@mokhan.ca>
2022-05-19 15:46:01
add snippet to generate a nested test
1 parent 5fabcaf
Changed files (1)
snippets
snippets/go.snippets
@@ -0,0 +1,4 @@
+snippet it "nested test function"
+	t.Run("${1:name}", func(t *testing.T) {
+		${0:${VISUAL}}
+	})