use synctest to make streams map tests fully deterministic (#5296)

* use synctest to make streams map tests fully deterministic

* ignore synctest helper package for code coverage
This commit is contained in:
Marten Seemann
2025-08-24 00:11:59 +08:00
committed by GitHub
parent 257281b6e2
commit 258d6b1352
5 changed files with 569 additions and 555 deletions

View File

@@ -12,3 +12,7 @@ func Test(t *testing.T, f func(t *testing.T)) {
f(t)
})
}
func Wait() {
synctest.Wait()
}

View File

@@ -10,3 +10,7 @@ import (
func Test(t *testing.T, f func(t *testing.T)) {
synctest.Test(t, f)
}
func Wait() {
synctest.Wait()
}