We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee42e81 commit 5300a91Copy full SHA for 5300a91
parser/parser_test.go
@@ -55,10 +55,11 @@ func TestParser(t *testing.T) {
55
continue
56
}
57
58
- testName := entry.Name()
59
- testDir := filepath.Join(testdataDir, testName)
+ testDir := filepath.Join(testdataDir, entry.Name())
+
60
+ t.Run(entry.Name(), func(t *testing.T) {
61
+ t.Parallel()
62
- t.Run(testName, func(t *testing.T) {
63
// Create context with 1 second timeout
64
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
65
defer cancel()
0 commit comments