mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
8 lines
301 B
JavaScript
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);
|
|
});
|