Updated benchmarks

This commit is contained in:
2019-11-18 13:15:07 +09:00
parent e3d6625608
commit 0b9dc8d353
3 changed files with 23 additions and 41 deletions

View File

@ -0,0 +1,20 @@
package benchmarks
import (
"testing"
"github.com/animenotifier/notify.moe/arn"
"github.com/animenotifier/notify.moe/components"
)
func BenchmarkRenderAnimeList(b *testing.B) {
user, _ := arn.GetUser("4J6qpK1ve")
animeList := user.AnimeList()
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
components.AnimeList(animeList.Items, -1, user, user)
}
}