mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 10:20:58 -06:00
f661fa609e
http://meta.discourse.org/t/is-it-better-for-discourse-to-use-javascript-or-coffeescript/3153
14 lines
294 B
JavaScript
14 lines
294 B
JavaScript
/*global waitsFor:true expect:true describe:true beforeEach:true it:true */
|
|
(function() {
|
|
|
|
|
|
describe("Discourse.MessageBus", function() {
|
|
return describe("Long polling", function() {
|
|
var bus;
|
|
bus = Discourse.MessageBus;
|
|
return bus.start();
|
|
});
|
|
});
|
|
|
|
}).call(this);
|