Uncaught promises should cause failure, for example if `data` isn't `"foo"` then the following should fail ``` getSomething() .then(function(data) { assert.equal(data, "foo") }); ```