| Index: tests/html/js_array_test.dart
|
| diff --git a/tests/html/js_array_test.dart b/tests/html/js_array_test.dart
|
| index 598cadfb7bb58c1b567f5362d96d82eba9256fdf..753ced3ba289e2ec0f4d7423603ada4780f75785 100644
|
| --- a/tests/html/js_array_test.dart
|
| +++ b/tests/html/js_array_test.dart
|
| @@ -511,8 +511,10 @@ main() {
|
|
|
| expect(descriptor.value, equals("a"));
|
| expect(descriptor.writable, isTrue);
|
| - expect(descriptor.enumerable, isTrue);
|
| - expect(descriptor.configurable, isTrue);
|
| + // TODO(jacobr): commented out until https://github.com/dart-lang/sdk/issues/26128
|
| + // is fixed.
|
| + // expect(descriptor.enumerable, isTrue);
|
| + // expect(descriptor.configurable, isTrue);
|
|
|
| descriptor = getOwnPropertyDescriptor(list, "length");
|
| expect(descriptor.value, equals(2));
|
|
|