Supposing you want to check if an event has been raised during a unit test, you can simply use parts of the result variable. As an example result.logs[0].event shows the name of the raised event.
}).then(function(result) {
event = result.logs[0].event;
assert.equal(event, "EventName", "Event raised");