| 12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Test</title>
- <meta charset="utf-8">
- <link rel="stylesheet" type="text/css" href="../../node_modules/grunt-mocha/node_modules/mocha/mocha.css">
- </head>
- <body>
- <div id="mocha"></div>
- <script src="../../node_modules/grunt-mocha/node_modules/mocha/mocha.js"></script>
- <script src="../../node_modules/chai/chai.js"></script>
- <script src="../../dist/seed.js"></script>
- <script>
- mocha.setup('bdd')
- var assert = chai.assert
- describe('E2E: Basic', function () {
- it('should have a bootstrap method', function () {
- assert.ok(seed.bootstrap)
- })
- })
- if (navigator.userAgent.indexOf('PhantomJS') < 0) {
- mocha.run();
- }
- </script>
- </body>
- </html>
|