Deprecate describes with no children

This commit is contained in:
Steve Gravrock
2020-02-12 16:44:44 -08:00
parent 18b2646d1d
commit c39c110eca
5 changed files with 36 additions and 2 deletions

View File

@@ -34,7 +34,11 @@ describe('Exceptions:', function() {
});
it('should handle exceptions thrown directly in top-level describe blocks and continue', function(done) {
var secondDescribe = jasmine.createSpy('second describe');
var secondDescribe = jasmine
.createSpy('second describe')
.and.callFake(function() {
env.it('has a test', function() {});
});
env.describe('a suite that throws an exception', function() {
env.it('is a test that should pass', function() {
this.expect(true).toEqual(true);