This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/spec/javascripts/message_bus_spec.js

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);