enable rendering rests on the Web (#42773)

This commit is contained in:
Yegor 2019-10-15 15:25:47 -07:00 committed by GitHub
parent 68e768dbcf
commit 21a18fbe16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 4 deletions

View file

@ -443,7 +443,6 @@ Future<void> _runWebTests() async {
'test/cupertino',
'test/examples',
'test/material',
'test/rendering',
'test/widgets',
];

View file

@ -586,5 +586,5 @@ void main() {
editable.layout(BoxConstraints.loose(const Size(1000.0, 1000.0)));
expect(editable.maxScrollExtent, equals(10));
});
}, skip: isBrowser); // TODO(yjbanov): https://github.com/flutter/flutter/issues/42772
}

View file

@ -534,7 +534,7 @@ void main() {
// Ensure we can render the same scene again after rendering an interior
// layer.
parent.buildScene(SceneBuilder());
});
}, skip: isBrowser); // TODO(yjbanov): `toImage` doesn't work on the Web: https://github.com/flutter/flutter/issues/42767
}
class _TestAlwaysNeedsAddToSceneLayer extends ContainerLayer {

View file

@ -55,6 +55,7 @@ void main() {
),
);
},
skip: isBrowser, // TODO(yjbanov): implement goldens on the Web: https://github.com/flutter/flutter/issues/40297
);
testWidgets(
@ -109,6 +110,7 @@ void main() {
),
);
},
skip: isBrowser, // TODO(yjbanov): implement goldens on the Web: https://github.com/flutter/flutter/issues/40297
);
testWidgets(
@ -155,6 +157,7 @@ void main() {
),
);
},
skip: isBrowser, // TODO(yjbanov): implement goldens on the Web: https://github.com/flutter/flutter/issues/40297
);
}

View file

@ -68,5 +68,5 @@ void main() {
semanticsHandle.dispose();
});
});
}, skip: isBrowser); // TODO(yjbanov): fails on Web with obscured stack trace: https://github.com/flutter/flutter/issues/42770
}