Sha256: 7de82e73b9af33a9149eccabb1c8e3b50c935c4f37e8d52052e86a9eca88f2d4
Contents?: true
Size: 920 Bytes
Versions: 27
Compression:
Stored size: 920 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2008-2011 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== // ======================================================================== // 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
27 entries across 27 versions & 1 rubygems