mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
http://meta.discourse.org/t/is-it-better-for-discourse-to-use-javascript-or-coffeescript/3153
13 lines
294 B
JavaScript
13 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);
|