Created
March 10, 2018 18:57
-
-
Save JitendraZaa/d76d262af41f8fc9bdba189161aed7a2 to your computer and use it in GitHub Desktop.
Getting Started with Jasmine Test Framework
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Jasmine Demo</title> | |
| <!-- #Jasmine Files --> | |
| <link rel="shortcut icon" type="image/png" href="js/lib/jasmine-3.1.0/jasmine_favicon.png"> | |
| <link rel="stylesheet" href="js/lib/jasmine-3.1.0/jasmine.css"> | |
| <script src="js/lib/jasmine-3.1.0/jasmine.js"></script> | |
| <script src="js/lib/jasmine-3.1.0/jasmine-html.js"></script> | |
| <script src="js/lib/jasmine-3.1.0/boot.js"></script> | |
| <!-- #Source Code --> | |
| <script src="js/Person.js"> </script> | |
| <!-- #Test Scripts --> | |
| <script src="js/PersonTest.js"> </script> | |
| </head> | |
| <body> | |
| <h1> Jasmine Demo </h1> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment