File tree Expand file tree Collapse file tree 1 file changed +24
-20
lines changed Expand file tree Collapse file tree 1 file changed +24
-20
lines changed Original file line number Diff line number Diff line change @@ -187,26 +187,30 @@ void main() {
187
187
expect (variableNames, containsAll (['formal' ]));
188
188
});
189
189
190
- test ('variables in function' , () async {
191
- stack = await breakAt ('nestedFunction' , mainScript);
192
- final variables = getFrameVariables (stack.frames! .first);
193
- await expectDartVariables (variables);
194
-
195
- final variableNames = variables.keys.toList ()..sort ();
196
- expect (
197
- variableNames,
198
- containsAll ([
199
- 'aClass' ,
200
- 'another' ,
201
- 'intLocalInMain' ,
202
- 'local' ,
203
- 'localThatsNull' ,
204
- 'nestedFunction' ,
205
- 'parameter' ,
206
- 'testClass' ,
207
- ]),
208
- );
209
- });
190
+ test (
191
+ 'variables in function' ,
192
+ () async {
193
+ stack = await breakAt ('nestedFunction' , mainScript);
194
+ final variables = getFrameVariables (stack.frames! .first);
195
+ await expectDartVariables (variables);
196
+
197
+ final variableNames = variables.keys.toList ()..sort ();
198
+ expect (
199
+ variableNames,
200
+ containsAll ([
201
+ 'aClass' ,
202
+ 'another' ,
203
+ 'intLocalInMain' ,
204
+ 'local' ,
205
+ 'localThatsNull' ,
206
+ 'nestedFunction' ,
207
+ 'parameter' ,
208
+ 'testClass' ,
209
+ ]),
210
+ );
211
+ },
212
+ skip: 'See https://github.com/dart-lang/webdev/issues/2469' ,
213
+ );
210
214
211
215
test ('variables in closure nested in method' , () async {
212
216
stack = await breakAt ('nestedClosure' , mainScript);
You can’t perform that action at this time.
0 commit comments