Sha256: 93935c65bc05fa8852b3029a25eee1b381737094e78bdaba7fb24e053f98869d
Contents?: true
Size: 588 Bytes
Versions: 51
Compression:
Stored size: 588 Bytes
Contents
// ======================================================================== // SC.guidFor Tests // ======================================================================== /*globals module test ok isObj equals expects */ module("Console object"); test("The console object should be defined for all browsers and work if supported", function() { ok((console!==undefined), "console should not be undefined"); console.info("Console.info is working"); console.log("Console.log is working"); console.warn("Console.warn is working"); console.error("Console.error is working"); });
Version data entries
51 entries across 51 versions & 3 rubygems