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