mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
11 lines
256 B
JavaScript
11 lines
256 B
JavaScript
Tinytest.add("logging - debug", function (test) {
|
|
|
|
// Just run a log statement and make sure it doesn't explode.
|
|
Meteor._suppress_log(3);
|
|
Meteor._debug();
|
|
Meteor._debug("test one arg");
|
|
Meteor._debug("this", "is", "a", "test");
|
|
test.ok();
|
|
|
|
});
|