Skip to content

Shallow rendering with context provider #56

@jawadst

Description

@jawadst

I am using a provider component to add context to the components I am testing.

Example:

expect((
  <Provider store={store}>
    <Component />
  </Provider>
)).to.eql('');

In that case, I am required to do a non-shallow rendering/deep comparison with eql instead of equal. If I don't (and use equal), the rendered HTML that I get is <Component /> (which is to be expected).

That being said, what I am looking for here is doing a shallow rendering "two levels deep" where <Component /> gets rendered but not its children.

Is there any way to do that currently with preact-jsx-chai? Is there another way to provide the context without losing the ability to do shallow rendering?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions