mirror of
https://github.com/discourse/discourse.git
synced 2025-05-23 07:11:17 +08:00
Convert all CoffeeScript to Javascript. See:
http://meta.discourse.org/t/is-it-better-for-discourse-to-use-javascript-or-coffeescript/3153
This commit is contained in:
13
spec/javascripts/message_bus_spec.js
Normal file
13
spec/javascripts/message_bus_spec.js
Normal file
@ -0,0 +1,13 @@
|
||||
/*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);
|
Reference in New Issue
Block a user