This file contains hidden or 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
| describe('highest level describe', function () { | |
| before(function() { | |
| console.log('This is the highest level before') | |
| }) | |
| beforeEach(function() { | |
| console.log('This is the highest level beforeEach') | |
| }) | |
| it('This is the first highest level test', function() { | |
| console.log('first highest level test') |