Index: sky/tests/mocha/describe-only.html |
diff --git a/sky/tests/mocha/describe-only.html b/sky/tests/mocha/describe-only.html |
deleted file mode 100644 |
index 68f686fdf7987859f0cd80c6e3750eeec8bf5ec8..0000000000000000000000000000000000000000 |
--- a/sky/tests/mocha/describe-only.html |
+++ /dev/null |
@@ -1,20 +0,0 @@ |
-<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> |