@@ -317,7 +317,8 @@ public void testExceptionParameters() {
317317 }""" );
318318 }
319319
320- public void testObjectMembers () {
320+ // See: https://github.com/flutter/dart-intellij-third-party/issues/86
321+ public void ignore_testObjectMembers () {
321322 doTest (myFixture ,
322323 """
323324 class Bar{}
@@ -331,7 +332,8 @@ class Foo extends Bar{
331332 }""" );
332333 }
333334
334- public void testCommentsInsideCallExpression () {
335+ // See: https://github.com/flutter/dart-intellij-third-party/issues/86
336+ public void ignore_testCommentsInsideCallExpression () {
335337 doTest (myFixture ,
336338 """
337339 main(){
@@ -340,8 +342,9 @@ public void testCommentsInsideCallExpression() {
340342 }""" );
341343 }
342344
343- // fails, tracked as https://github.com/dart-lang/sdk/issues/32316
344- public void testEnum () {
345+ // See: https://github.com/flutter/dart-intellij-third-party/issues/86
346+ // Also, (once) tracked as https://github.com/dart-lang/sdk/issues/32316
347+ public void ignore_testEnum () {
345348 doTest (myFixture ,
346349 """
347350 enum Foo {FooA, FooB, }
@@ -411,7 +414,8 @@ public void testNamedParameter_functionInvocation() {
411414// doTest(myFixture);
412415// }
413416
414- public void testDartInternalLibrary () {
417+ // See: https://github.com/flutter/dart-intellij-third-party/issues/86
418+ public void ignore_testDartInternalLibrary () {
415419 doTest (myFixture ,
416420 "import 'dart:_internal';\n " +
417421 "class A extends <caret expected='[Dart SDK]/lib/internal/list.dart -> UnmodifiableListBase'>UnmodifiableListBase<E>{}"
@@ -428,7 +432,8 @@ public void testDartInternalLibrary() {
428432// doTest(myFixture);
429433// }
430434
431- public void testDuplicatedImportPrefix () {
435+ // See: https://github.com/flutter/dart-intellij-third-party/issues/86
436+ public void ignore_testDuplicatedImportPrefix () {
432437 myFixture .addFileToProject ("file1.dart" , "var inFile1;" );
433438 myFixture .addFileToProject ("file2.dart" , "var inFile2;" );
434439 doTest (myFixture ,
@@ -515,7 +520,8 @@ public void testDuplicatedImportPrefix() {
515520// doTest(myFixture);
516521// }
517522
518- public void testElvisRes () {
523+ // See: https://github.com/flutter/dart-intellij-third-party/issues/86
524+ public void ignore_testElvisRes () {
519525 doTest (myFixture ,
520526 """
521527 class Bar{}
0 commit comments