@@ -22,7 +22,7 @@ ruleTester.run('catch-or-return', rule, {
22
22
{
23
23
code :
24
24
'postJSON("/smajobber/api/reportJob.json")\n\t.then(()=>this.setState())\n\t.catch(()=>this.setState())' ,
25
- parserOptions : { ecmaVersion : 6 }
25
+ parserOptions : { ecmaVersion : 6 } ,
26
26
} ,
27
27
28
28
// return
@@ -34,187 +34,187 @@ ruleTester.run('catch-or-return', rule, {
34
34
// allowThen - .then(null, fn)
35
35
{
36
36
code : 'frank().then(go).then(null, doIt)' ,
37
- options : [ { allowThen : true } ]
37
+ options : [ { allowThen : true } ] ,
38
38
} ,
39
39
{
40
40
code : 'frank().then(go).then().then().then().then(null, doIt)' ,
41
- options : [ { allowThen : true } ]
41
+ options : [ { allowThen : true } ] ,
42
42
} ,
43
43
{
44
44
code :
45
45
'frank().then(go).then().then(null, function() { /* why bother */ })' ,
46
- options : [ { allowThen : true } ]
46
+ options : [ { allowThen : true } ] ,
47
47
} ,
48
48
{
49
49
code : 'frank.then(go).then(to).then(null, jail)' ,
50
- options : [ { allowThen : true } ]
50
+ options : [ { allowThen : true } ] ,
51
51
} ,
52
52
53
53
// allowThen - .then(null, fn)
54
54
{ code : 'frank().then(a, b)' , options : [ { allowThen : true } ] } ,
55
55
{
56
56
code : 'frank().then(a).then(b).then(null, c)' ,
57
- options : [ { allowThen : true } ]
57
+ options : [ { allowThen : true } ] ,
58
58
} ,
59
59
{
60
60
code : 'frank().then(a).then(b).then(c, d)' ,
61
- options : [ { allowThen : true } ]
61
+ options : [ { allowThen : true } ] ,
62
62
} ,
63
63
{
64
64
code : 'frank().then(a).then(b).then().then().then(null, doIt)' ,
65
- options : [ { allowThen : true } ]
65
+ options : [ { allowThen : true } ] ,
66
66
} ,
67
67
{
68
68
code :
69
69
'frank().then(a).then(b).then(null, function() { /* why bother */ })' ,
70
- options : [ { allowThen : true } ]
70
+ options : [ { allowThen : true } ] ,
71
71
} ,
72
72
73
73
// allowThen - .then(fn, fn)
74
74
{
75
75
code : 'frank().then(go).then(zam, doIt)' ,
76
- options : [ { allowThen : true } ]
76
+ options : [ { allowThen : true } ] ,
77
77
} ,
78
78
{
79
79
code : 'frank().then(go).then().then().then().then(wham, doIt)' ,
80
- options : [ { allowThen : true } ]
80
+ options : [ { allowThen : true } ] ,
81
81
} ,
82
82
{
83
83
code :
84
84
'frank().then(go).then().then(function() {}, function() { /* why bother */ })' ,
85
- options : [ { allowThen : true } ]
85
+ options : [ { allowThen : true } ] ,
86
86
} ,
87
87
{
88
88
code : 'frank.then(go).then(to).then(pewPew, jail)' ,
89
- options : [ { allowThen : true } ]
89
+ options : [ { allowThen : true } ] ,
90
90
} ,
91
91
92
92
// allowFinally - .finally(fn)
93
93
{
94
94
code : 'frank().then(go).catch(doIt).finally(fn)' ,
95
- options : [ { allowFinally : true } ]
95
+ options : [ { allowFinally : true } ] ,
96
96
} ,
97
97
{
98
98
code : 'frank().then(go).then().then().then().catch(doIt).finally(fn)' ,
99
- options : [ { allowFinally : true } ]
99
+ options : [ { allowFinally : true } ] ,
100
100
} ,
101
101
{
102
102
code :
103
103
'frank().then(go).then().catch(function() { /* why bother */ }).finally(fn)' ,
104
- options : [ { allowFinally : true } ]
104
+ options : [ { allowFinally : true } ] ,
105
105
} ,
106
106
107
107
// terminationMethod=done - .done(null, fn)
108
108
{
109
109
code : 'frank().then(go).done()' ,
110
- options : [ { terminationMethod : 'done' } ]
110
+ options : [ { terminationMethod : 'done' } ] ,
111
111
} ,
112
112
113
113
// terminationMethod=[catch, done] - .done(null, fn)
114
114
{
115
115
code : 'frank().then(go).catch()' ,
116
- options : [ { terminationMethod : [ 'catch' , 'done' ] } ]
116
+ options : [ { terminationMethod : [ 'catch' , 'done' ] } ] ,
117
117
} ,
118
118
{
119
119
code : 'frank().then(go).done()' ,
120
- options : [ { terminationMethod : [ 'catch' , 'done' ] } ]
120
+ options : [ { terminationMethod : [ 'catch' , 'done' ] } ] ,
121
121
} ,
122
122
{
123
123
code : 'frank().then(go).finally()' ,
124
- options : [ { terminationMethod : [ 'catch' , 'finally' ] } ]
125
- }
124
+ options : [ { terminationMethod : [ 'catch' , 'finally' ] } ] ,
125
+ } ,
126
126
] ,
127
127
128
128
invalid : [
129
129
// catch failures
130
130
{
131
131
code : 'function callPromise(promise, cb) { promise.then(cb) }' ,
132
- errors : [ { message : catchMessage } ]
132
+ errors : [ { message : catchMessage } ] ,
133
133
} ,
134
134
{
135
135
code : 'fetch("http://www.yahoo.com").then(console.log.bind(console))' ,
136
- errors : [ { message : catchMessage } ]
136
+ errors : [ { message : catchMessage } ] ,
137
137
} ,
138
138
{
139
139
code : 'a.then(function() { return "x"; }).then(function(y) { throw y; })' ,
140
- errors : [ { message : catchMessage } ]
140
+ errors : [ { message : catchMessage } ] ,
141
141
} ,
142
142
{
143
143
code : 'Promise.resolve(frank)' ,
144
- errors : [ { message : catchMessage } ]
144
+ errors : [ { message : catchMessage } ] ,
145
145
} ,
146
146
{
147
147
code : 'frank().then(to).catch(fn).then(foo)' ,
148
- errors : [ { message : catchMessage } ]
148
+ errors : [ { message : catchMessage } ] ,
149
149
} ,
150
150
{
151
151
code : 'frank().finally(fn)' ,
152
- errors : [ { message : catchMessage } ]
152
+ errors : [ { message : catchMessage } ] ,
153
153
} ,
154
154
{
155
155
code : 'frank().then(to).finally(fn)' ,
156
- errors : [ { message : catchMessage } ]
156
+ errors : [ { message : catchMessage } ] ,
157
157
} ,
158
158
{
159
159
code : 'frank().then(go).catch(doIt).finally(fn)' ,
160
- errors : [ { message : catchMessage } ]
160
+ errors : [ { message : catchMessage } ] ,
161
161
} ,
162
162
{
163
163
code : 'frank().then(go).then().then().then().catch(doIt).finally(fn)' ,
164
- errors : [ { message : catchMessage } ]
164
+ errors : [ { message : catchMessage } ] ,
165
165
} ,
166
166
{
167
167
code :
168
168
'frank().then(go).then().catch(function() { /* why bother */ }).finally(fn)' ,
169
- errors : [ { message : catchMessage } ]
169
+ errors : [ { message : catchMessage } ] ,
170
170
} ,
171
171
172
172
// return failures
173
173
{
174
174
code : 'function a() { frank().then(go) }' ,
175
- errors : [ { message : catchMessage } ]
175
+ errors : [ { message : catchMessage } ] ,
176
176
} ,
177
177
{
178
178
code : 'function a() { frank().then(go).then().then().then() }' ,
179
- errors : [ { message : catchMessage } ]
179
+ errors : [ { message : catchMessage } ] ,
180
180
} ,
181
181
{
182
182
code : 'function a() { frank().then(go).then()}' ,
183
- errors : [ { message : catchMessage } ]
183
+ errors : [ { message : catchMessage } ] ,
184
184
} ,
185
185
{
186
186
code : 'function a() { frank.then(go).then(to) }' ,
187
- errors : [ { message : catchMessage } ]
187
+ errors : [ { message : catchMessage } ] ,
188
188
} ,
189
189
190
190
// allowFinally=true failures
191
191
{
192
192
code : 'frank().then(go).catch(doIt).finally(fn).then(foo)' ,
193
193
options : [ { allowFinally : true } ] ,
194
- errors : [ { message : catchMessage } ]
194
+ errors : [ { message : catchMessage } ] ,
195
195
} ,
196
196
{
197
197
code : 'frank().then(go).catch(doIt).finally(fn).foobar(foo)' ,
198
198
options : [ { allowFinally : true } ] ,
199
- errors : [ { message : catchMessage } ]
199
+ errors : [ { message : catchMessage } ] ,
200
200
} ,
201
201
202
202
// terminationMethod=done - .done(null, fn)
203
203
{
204
204
code : 'frank().then(go)' ,
205
205
options : [ { terminationMethod : 'done' } ] ,
206
- errors : [ { message : doneMessage } ]
206
+ errors : [ { message : doneMessage } ] ,
207
207
} ,
208
208
{
209
209
code : 'frank().catch(go)' ,
210
210
options : [ { terminationMethod : 'done' } ] ,
211
- errors : [ { message : doneMessage } ]
211
+ errors : [ { message : doneMessage } ] ,
212
212
} ,
213
213
214
214
// assume somePromise.ANYTHING() is a new promise
215
215
{
216
216
code : 'frank().catch(go).someOtherMethod()' ,
217
- errors : [ { message : catchMessage } ]
218
- }
219
- ]
217
+ errors : [ { message : catchMessage } ] ,
218
+ } ,
219
+ ] ,
220
220
} )
0 commit comments