I wanted to test my component's output, and I was informed of TestLayout:
|
pub(crate) struct TestLayout<'a> { |
Unfortunately, it's private to the crate, so it cannot be used by outsiders. Consider making TestLayout public or possibly create something more suitable for general use that could help with testing component output expectations.
Questionnaire
I wanted to test my component's output, and I was informed of
TestLayout:yew/yew/src/virtual_dom/mod.rs
Line 327 in a4eb965
Unfortunately, it's private to the crate, so it cannot be used by outsiders. Consider making
TestLayoutpublic or possibly create something more suitable for general use that could help with testing component output expectations.Questionnaire