Files
meteor/packages/stream/stream_tests.js
2012-03-02 05:22:40 -08:00

8 lines
301 B
JavaScript

Tinytest.add("stream - status", function (test) {
// Very basic test. Just see that it runs and returns something. Not a
// lot of coverage, but enough that it would have caught a recent bug.
var status = Meteor.status();
test.equal(typeof status, "object");
test.isTrue(status.status);
});