Hacker News new | ask | show | jobs
by johns 4788 days ago
What do you use for your existing tests? VCR?
1 comments

We've rolled our own system inside Jasmine that mocks out XHR. It's generally in the form of:

    @ajax.whenQuerying('someendpoint').respondWith(someData)
And internal to that system we have some components that understand the overall shape of our data model so someData can be a very small, simple object with just the data the test cares about and the internals flesh out the rest.