mirror of
https://github.com/discourse/discourse.git
synced 2025-09-07 12:02:53 +08:00
11 lines
355 B
JavaScript
11 lines
355 B
JavaScript
moduleFor("view:header");
|
|
|
|
test("showNotifications", function() {
|
|
var controllerSpy = {
|
|
send: sinon.spy()
|
|
};
|
|
var view = this.subject({controller: controllerSpy});
|
|
view.showNotifications();
|
|
|
|
ok(controllerSpy.send.calledWith("showNotifications", view), "sends showNotifications message to the controller, passing header view as a param");
|
|
});
|