Skip to content

Commit 5c98f0a

Browse files
author
Eric Wendelin
committed
Add Error fixtures for testing.
1 parent bad3cf8 commit 5c98f0a

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

spec/fixtures/errors.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/* exported Errors */
2+
var Errors = {};
3+
4+
Errors.IE_11 = {
5+
message: "Unable to get property 'undef' of undefined or null reference",
6+
stack: "TypeError: Unable to get property 'undef' of undefined or null reference\n" +
7+
" at Anonymous function (http://path/to/file.js:47:21)\n" +
8+
" at foo (http://path/to/file.js:45:13)\n" +
9+
" at bar (http://path/to/file.js:108:1)",
10+
description: "Unable to get property 'undef' of undefined or null reference"
11+
};

0 commit comments

Comments
 (0)