You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In jasmine 1, we were able to tap into finishCallback such as this
const _finishCallback = jasmine.Runner.prototype.finishCallback;
jasmine.Runner.prototype.finishCallback = function () {
// Run the old finishCallback
_finishCallback.bind(this)();
// console.log('close server connection');
app.closeServer();
};
Is there an equivalent to accomplish the same?
The text was updated successfully, but these errors were encountered:
In jasmine 1, we were able to tap into finishCallback such as this
const _finishCallback = jasmine.Runner.prototype.finishCallback;
jasmine.Runner.prototype.finishCallback = function () {
// Run the old finishCallback
_finishCallback.bind(this)();
// console.log('close server connection');
app.closeServer();
};
Is there an equivalent to accomplish the same?
The text was updated successfully, but these errors were encountered: