mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
11 lines
265 B
JavaScript
11 lines
265 B
JavaScript
/*global waitsFor:true expect:true describe:true beforeEach:true it:true */
|
|
|
|
describe("Discourse.MessageBus", function() {
|
|
return describe("Long polling", function() {
|
|
var bus;
|
|
bus = Discourse.MessageBus;
|
|
return bus.start();
|
|
});
|
|
});
|
|
|
|
|