diff --git a/resize_test.go b/resize_test.go index 79749e4..3874cd8 100644 --- a/resize_test.go +++ b/resize_test.go @@ -157,3 +157,11 @@ func BenchmarkResizePng(b *testing.B) { } benchmarkResize("test.png", options, b) } + +func BenchmarkResizeWebP(b *testing.B) { + options := Options{ + Width: 200, + Height: 200, + } + benchmarkResize("test.webp", options, b) +}