|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | +<head> |
| 4 | + <title>mixi JS Training</title> |
| 5 | + <meta charset="UTF-8"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 7 | + <link href="http://img.mixi.net/img/basic/favicon.ico" type="image/vnd.microsoft.icon" rel="icon"> |
| 8 | + <link href="http://img.mixi.net/img/basic/favicon.ico" type="image/vnd.microsoft.icon" rel="shortcut icon"> |
| 9 | + <link rel="stylesheet" href="/modules/mocha/mocha.css"> |
| 10 | + <link rel="stylesheet" href="../common/mocha-patch.css"> |
| 11 | + <link rel="stylesheet" href="style.css"> |
| 12 | +</head> |
| 13 | +<body> |
| 14 | + <div class="js-training-container"> |
| 15 | + <ul class="js-training"> |
| 16 | + <li id="firebrick">1<span class="firebrick-ghost">👻</span></li> |
| 17 | + <li id="chocolate">2<span class="chocolate-space-invader">👾</span></li> |
| 18 | + <li class="mediumseagreen">3<span class="mediumseagreen-ghosts">👻👻</span>🌿<span class="mediumseagreen-ghosts">👻👻</span></li> |
| 19 | + <li class="turquoise">4</li> |
| 20 | + <li><blockquote>5</blockquote></li> |
| 21 | + </ul> |
| 22 | + <div class="js-training-trick">🐠🐠</div> |
| 23 | + </div> |
| 24 | + <div class="js-training-container"> |
| 25 | + <ul class="js-training"> |
| 26 | + <li id="brown">6<span class="brown-ghost">👻</span></li> |
| 27 | + <li id="darkorange">7<span class="darkorange-space-invader">👾</span></li> |
| 28 | + <li class="limegreen">8<span class="limegreen-ghosts">👻👻</span>🌿<span class="limegreen-ghosts">👻👻</span></li> |
| 29 | + <li class="mediumturquoise">9</li> |
| 30 | + <li><p>10</p></li> |
| 31 | + </ul> |
| 32 | + <div class="js-training-trick">🐠🐠</div> |
| 33 | + </div> |
| 34 | + <div id="mocha"></div> |
| 35 | + <script src="/modules/jquery/dist/jquery.js"></script> |
| 36 | + <script src="/modules/mocha/mocha.js"></script> |
| 37 | + <script src="/modules/chai/chai.js"></script> |
| 38 | + <script src="/modules/chai-jquery/chai-jquery.js"></script> |
| 39 | + <script> |
| 40 | + mocha.ui('bdd'); |
| 41 | + mocha.reporter('html'); |
| 42 | + expect = chai.expect; |
| 43 | + </script> |
| 44 | + <script>mocha.setup('bdd')</script> |
| 45 | + <script src="tests.js"></script> |
| 46 | + <script> |
| 47 | + if (window.mochaPhantomJS) { mochaPhantomJS.run(); } |
| 48 | + else { mocha.run(); } |
| 49 | + </script> |
| 50 | +</body> |
| 51 | +</html> |
0 commit comments