Skip to content

Commit b210cd8

Browse files
committed
chore: skip scanner test when running short tests
1 parent ee0a942 commit b210cd8

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

scanner_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ import (
88
)
99

1010
func TestScanner(t *testing.T) {
11+
if testing.Short() {
12+
t.Skip("skipping test in short mode.")
13+
}
1114
tests := []struct {
1215
name string
1316
filename string

0 commit comments

Comments
 (0)