I got an interesting feature request that I don't think we'd thought through.
Someone was trying to use runs() and waitsFor() in an afterEach() block b/c they needed to delete something via an async call - this was API testing, not app testing where you'd mock something like this out.
It looks like async stuff is supported in beforeEach(), which makes sense given how we implemented the waits.
I told him how to do it in a "wet" way - just do the deletion at the end of each spec.
Should we be considering adding this?
--dwf