| <html> | |
| <import src="../resources/chai.sky" /> | |
| <import src="../resources/mocha.sky" /> | |
| <script> | |
| describe('This suite', function() { | |
| it.only('should only run this test', function() { | |
| assert.ok(true); | |
| }); | |
| it('should not run this test', function() { | |
| assert.ok(false); | |
| }); | |
| }); | |
| </script> | |
| </html> |