-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
the merge.js example there with --reporter spec will result in: merge stuff one ✓ should do something two ✓ should do stuff three ✓ should do something four ✓ should do something
- Loading branch information
Showing
3 changed files
with
70 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
describe('merge', function(){ | ||
describe('stuff', function(){ | ||
describe('one', function(){ | ||
it('should do something', function(){ | ||
|
||
}) | ||
}) | ||
|
||
describe('two', function(){ | ||
it('should do stuff', function(){ | ||
|
||
}) | ||
}) | ||
}) | ||
}) | ||
|
||
describe('merge', function(){ | ||
describe('stuff', function(){ | ||
describe('three', function(){ | ||
it('should do something', function(){ | ||
|
||
}) | ||
}) | ||
}) | ||
}) | ||
|
||
describe('merge stuff', function(){ | ||
describe('four', function(){ | ||
it('should do something', function(){ | ||
|
||
}) | ||
}) | ||
}) |