Sha256: 14b7e7751f9eab95d5f77e5401d0eeba78f66fd588fe4152b16a66a58179f8ab
Contents?: true
Size: 464 Bytes
Versions: 75
Compression:
Stored size: 464 Bytes
Contents
function nestedBlock(nestingDepth, index) { if (nestingDepth == 0) { return; } else { describe('Suite ' + index + ' at depth ' + nestingDepth, function() { it('should be a failing test', function() { expect(true).toBe(false); }); it('should be a passing test', function() { expect(true).toBe(true); }); nestedBlock(nestingDepth - 1, index); }); } } for (i=0; i<2000; i++) { nestedBlock(10, i); }
Version data entries
75 entries across 60 versions & 2 rubygems