Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 15th, 2012  |  syntax: None  |  size: 0.80 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  2. "http://www.w3.org/TR/html4/loose.dtd">
  3. <html>
  4. <head>
  5.  
  6.         <title>Jasmine Test Runner</title>
  7.        
  8.         <!-- Jasmine includes -->
  9.         <link rel="stylesheet" type="text/css" href="lib/jasmine-1.0.2/jasmine.css">
  10.         <script type="text/javascript" src="lib/jasmine-1.0.2/jasmine.js"></script>
  11.         <script type="text/javascript" src="lib/jasmine-1.0.2/jasmine-html.js"></script>
  12.        
  13.         <!-- Source files -->
  14.         <script type="text/javascript" src="src/HelloWorld.js"></script>
  15.        
  16.         <!-- Spec files -->
  17.         <script type="text/javascript" src="spec/HelloWorldSpec.js"></script>
  18.        
  19. </head>
  20. <body>
  21.  
  22. <script type="text/javascript">
  23.         jasmine.getEnv().addReporter(new jasmine.TrivialReporter());
  24.         jasmine.getEnv().execute();
  25. </script>
  26.  
  27. </body>
  28. </html>