chore(test): enable parallel test execution

Seems to cut overall total test time down to one third the time.
This commit is contained in:
2021-12-16 20:16:03 +00:00
parent 164ccc497a
commit b59d421322
3 changed files with 34 additions and 0 deletions

View File

@@ -7,6 +7,8 @@ import (
)
func TestBytes(t *testing.T) {
t.Parallel()
for _, tt := range testCases {
t.Run(tt.name, func(t *testing.T) {
got, _ := Bytes(tt.n)