mirror of
https://github.com/discourse/discourse.git
synced 2025-03-04 10:19:40 +00:00
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);
|