Added chrome extension

This commit is contained in:
2017-07-05 04:10:19 +02:00
parent 7b611992cb
commit 0e42105049
5 changed files with 43 additions and 1 deletions

View File

@ -25,3 +25,17 @@ func BenchmarkThread(b *testing.B) {
}
})
}
func BenchmarkAnimeList(b *testing.B) {
user, _ := arn.GetUser("4J6qpK1ve")
animeList := user.AnimeList()
b.ReportAllocs()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
components.AnimeList(animeList, user, user)
}
})
}