(stackFrame)
| 97 | describe('#generateArtificially', function() { |
| 98 | it('gets stacktrace from current location', function(done) { |
| 99 | var stackFrameFilter = function(stackFrame) { |
| 100 | return stackFrame.getFunctionName() && |
| 101 | stackFrame.getFunctionName().indexOf('testGenerateArtificially') > -1; |
| 102 | }; |
| 103 | |
| 104 | (function testGenerateArtificially() { |
| 105 | StackTrace.generateArtificially({filter: stackFrameFilter}) |
nothing calls this directly
no test coverage detected