Skip to content

Commit a3bf972

Browse files
committed
Remove duplicate test
1 parent f67192d commit a3bf972

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

spec/error-stack-parser-spec.js

-12
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// jscs:disable maximumLineLength
21
/* global ErrorStackParser: false, CapturedExceptions: false */
32
describe('ErrorStackParser', function() {
43
describe('#parse', function() {
@@ -161,17 +160,6 @@ describe('ErrorStackParser', function() {
161160
expect(stackFrames[4]).toMatchStackFrame(['Global code', undefined, 'http://localhost:8080/file.js', 32, 9]);
162161
});
163162

164-
it('should parse nested eval() from V8', function() {
165-
var stackFrames = unit.parse(CapturedExceptions.CHROME_48_NESTED_EVAL);
166-
expect(stackFrames).toBeTruthy();
167-
expect(stackFrames.length).toBe(5);
168-
expect(stackFrames[0]).toMatchStackFrame(['baz', undefined, 'http://localhost:8080/file.js', 21, 17]);
169-
expect(stackFrames[1]).toMatchStackFrame(['foo', undefined, 'http://localhost:8080/file.js', 21, 17]);
170-
expect(stackFrames[2]).toMatchStackFrame(['eval', undefined, 'http://localhost:8080/file.js', 21, 17]);
171-
expect(stackFrames[3]).toMatchStackFrame(['Object.speak', undefined, 'http://localhost:8080/file.js', 21, 17]);
172-
expect(stackFrames[4]).toMatchStackFrame([undefined, undefined, 'http://localhost:8080/file.js', 31, 13]);
173-
});
174-
175163
it('should parse Opera 9.27 Error messages', function() {
176164
var stackFrames = unit.parse(CapturedExceptions.OPERA_927);
177165
expect(stackFrames).toBeTruthy();

0 commit comments

Comments
 (0)