Open
Description
Ooodles of packages use testify.
Testify's "tinygo test" fails at first because of #2649
Getting past that with -tags safe yields
mock/mock.go:705:28: f.fn.Type().In undefined (type reflect.Type has no field or method In)
mock/mock.go:751:12: fnType.NumIn undefined (type reflect.Type has no field or method NumIn)
mock/mock.go:754:12: fnType.NumOut undefined (type reflect.Type has no field or method NumOut)
mock/mock.go:754:36: fnType.Out undefined (type reflect.Type has no field or method Out)
It's not really clear that filing bugs about reflect problems makes much sense - we know reflect needs work - but
as testify is a fairly central package, I figured it was just barely worth filing a bug.