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