blob: 68f686fdf7987859f0cd80c6e3750eeec8bf5ec8 [file] [log] [blame]
<html>
<link rel="import" href="../resources/chai.html" />
<link rel="import" href="../resources/mocha.html" />
<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>