amateur
amateur

Reputation: 44663

framework to performance test javascript

I am currently implementing a module observer pattern to a large scale web application that has a large dependency on javascript. I have introduced unit testing of each of the modules which I find very beneficial in capturing any issues with my javascript.

I would now also like to look at the possibility of performance testing my javascript. Are there any frameworks available where I can set up performance test for my javascript files?

Upvotes: 3

Views: 1301

Answers (1)

jfriend00
jfriend00

Reputation: 708056

I'm familiar with the jsperf service for javascript performance testing. It is based on the benchmark.js benchmarking library. You could use use either depending upon the details of what you're looking for.

Upvotes: 4

Related Questions