blob: 62da377d810e018aa68f6b48c1729a6ad4d3ad97 [file] [log] [blame]
<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>