JavaScript/Notes/Testing: Difference between revisions

From Noisebridge
Jump to navigation Jump to search
(Created page with "Copy 'n' paste the following test shell into a file and save it: <source lang="html4"> <!DOCTYPE HTML> <html lang="en"> <head> <meta http-equiv="Content-type" content="text...")
 
No edit summary
Line 2: Line 2:




<source lang="html4">
<source lang="html5">
<!DOCTYPE HTML>
<!DOCTYPE HTML>



Revision as of 10:18, 9 March 2014

Copy 'n' paste the following test shell into a file and save it:


<source lang="html5"> <!DOCTYPE HTML>

<html lang="en"> <head> <meta http-equiv="Content-type" content="text/html;charset=UTF-8"> <link rel="Index" href="../"> <title>testing yuitest</title> <script src="http://yui.yahooapis.com/3.15.0/build/yui/yui-min.js"></script> </head> <body> <script> "use strict";

YUI().use('test', 'test-console', function(Y) {

   new Y.Test.Console().render();

var Assert = Y.Assert,

       ArrayAssert = Y.ArrayAssert,
       suite = new Y.Test.Suite("Dom");
   var blah;
   suite.add(new Y.Test.Case({


name: 'DOM',

"test blah": function() { Assert.areSame("blah", blah, "blah was not 'blah'"); }

}));

   Y.Test.Runner.add(suite);
   Y.Test.Runner.run();

}); </script> </body> </html> </source>