mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 21:23:43 +08:00
12 lines
265 B
JavaScript
12 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();
|
|
});
|
|
});
|
|
|
|
|