How can I get this test to pass without resorting to runs/waitsFor blocks?
it(\"cannot change timeout\", function(done) { request(\"http://localhost:30
Looks like you can now add it as the last argument for the it function:
it
describe('my test', function(){ it('works', function(done){ somethingAsync().then(done); }, 10000); // changes to 10 seconds });