Unverified Commit 21a18fbe authored by Yegor's avatar Yegor Committed by GitHub

enable rendering rests on the Web (#42773)

parent 68e768db
......@@ -443,7 +443,6 @@ Future<void> _runWebTests() async {
'test/cupertino',
'test/examples',
'test/material',
'test/rendering',
'test/widgets',
];
......
......@@ -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
}
......@@ -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 {
......
......@@ -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
);
}
......@@ -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
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment