@@ -40,6 +40,7 @@ tap.test('failures', function (tt) {
40
40
+ ' undefined\n'
41
41
+ ' actual: |-\n'
42
42
+ " { [TypeError: " + getNonFunctionMessage ( ) + "] message: '" + getNonFunctionMessage ( ) + "' }\n"
43
+ + ' at: Test.<anonymous> ($TEST/throws.js:$LINE:$COL)\n'
43
44
+ ' stack: |-\n'
44
45
+ ' TypeError: ' + getNonFunctionMessage ( undefined ) + '\n'
45
46
+ ' [... stack stripped ...]\n'
@@ -53,6 +54,7 @@ tap.test('failures', function (tt) {
53
54
+ ' undefined\n'
54
55
+ ' actual: |-\n'
55
56
+ " { [TypeError: " + getNonFunctionMessage ( null ) + "] message: '" + getNonFunctionMessage ( null ) + "' }\n"
57
+ + ' at: Test.<anonymous> ($TEST/throws.js:$LINE:$COL)\n'
56
58
+ ' stack: |-\n'
57
59
+ ' TypeError: ' + getNonFunctionMessage ( null ) + '\n'
58
60
+ ' [... stack stripped ...]\n'
@@ -66,6 +68,7 @@ tap.test('failures', function (tt) {
66
68
+ ' undefined\n'
67
69
+ ' actual: |-\n'
68
70
+ " { [TypeError: " + getNonFunctionMessage ( true ) + "] message: '" + getNonFunctionMessage ( true ) + "' }\n"
71
+ + ' at: Test.<anonymous> ($TEST/throws.js:$LINE:$COL)\n'
69
72
+ ' stack: |-\n'
70
73
+ ' TypeError: ' + getNonFunctionMessage ( true ) + '\n'
71
74
+ ' [... stack stripped ...]\n'
@@ -79,6 +82,7 @@ tap.test('failures', function (tt) {
79
82
+ ' undefined\n'
80
83
+ ' actual: |-\n'
81
84
+ " { [TypeError: " + getNonFunctionMessage ( false ) + "] message: '" + getNonFunctionMessage ( false ) + "' }\n"
85
+ + ' at: Test.<anonymous> ($TEST/throws.js:$LINE:$COL)\n'
82
86
+ ' stack: |-\n'
83
87
+ ' TypeError: ' + getNonFunctionMessage ( false ) + '\n'
84
88
+ ' [... stack stripped ...]\n'
@@ -92,6 +96,7 @@ tap.test('failures', function (tt) {
92
96
+ ' undefined\n'
93
97
+ ' actual: |-\n'
94
98
+ " { [TypeError: " + getNonFunctionMessage ( 'abc' ) + "] message: '" + getNonFunctionMessage ( 'abc' ) + "' }\n"
99
+ + ' at: Test.<anonymous> ($TEST/throws.js:$LINE:$COL)\n'
95
100
+ ' stack: |-\n'
96
101
+ ' TypeError: ' + getNonFunctionMessage ( 'abc' ) + '\n'
97
102
+ ' [... stack stripped ...]\n'
@@ -105,6 +110,7 @@ tap.test('failures', function (tt) {
105
110
+ ' undefined\n'
106
111
+ ' actual: |-\n'
107
112
+ " { [TypeError: " + getNonFunctionMessage ( / a / g) + "] message: '" + getNonFunctionMessage ( / a / g) + "' }\n"
113
+ + ' at: Test.<anonymous> ($TEST/throws.js:$LINE:$COL)\n'
108
114
+ ' stack: |-\n'
109
115
+ ' TypeError: ' + getNonFunctionMessage ( / a / g) + '\n'
110
116
+ ' [... stack stripped ...]\n'
@@ -118,6 +124,7 @@ tap.test('failures', function (tt) {
118
124
+ ' undefined\n'
119
125
+ ' actual: |-\n'
120
126
+ " { [TypeError: " + getNonFunctionMessage ( [ ] ) + "] message: '" + getNonFunctionMessage ( [ ] ) + "' }\n"
127
+ + ' at: Test.<anonymous> ($TEST/throws.js:$LINE:$COL)\n'
121
128
+ ' stack: |-\n'
122
129
+ ' TypeError: ' + getNonFunctionMessage ( [ ] ) + '\n'
123
130
+ ' [... stack stripped ...]\n'
@@ -131,6 +138,7 @@ tap.test('failures', function (tt) {
131
138
+ ' undefined\n'
132
139
+ ' actual: |-\n'
133
140
+ " { [TypeError: " + getNonFunctionMessage ( { } ) + "] message: '" + getNonFunctionMessage ( { } ) + "' }\n"
141
+ + ' at: Test.<anonymous> ($TEST/throws.js:$LINE:$COL)\n'
134
142
+ ' stack: |-\n'
135
143
+ ' TypeError: ' + getNonFunctionMessage ( { } ) + '\n'
136
144
+ ' [... stack stripped ...]\n'
@@ -143,6 +151,7 @@ tap.test('failures', function (tt) {
143
151
+ ' operator: throws\n'
144
152
+ ' expected: undefined\n'
145
153
+ ' actual: undefined\n'
154
+ + ' at: Test.<anonymous> ($TEST/throws.js:$LINE:$COL)\n'
146
155
+ ' stack: |-\n'
147
156
+ ' Error: should throw\n'
148
157
+ ' [... stack stripped ...]\n'
0 commit comments