Consider the following test:
it('should test something', function() {
browser.get('/dashboard/');
$("#myid").click();
expect(element(by.model('username')).getText()).toEqual('Test');
console.log("HERE");
});
In the following test, when the console.log() is ex...