npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

chai-react-suite

v0.10.2

Published

TODO

Readme

Warning: currently chai-react-suite is not tested well on different enviorments. It works for my project, but may not play well for your's. Please open issue if you have problems.

Testing components

Contents

describeComponent

describeComponent is a helper that simplify process of testing components. Basically it does:

  1. Prepares playground on beforeEach (you will have empty block where you can render component in test).
  2. Creates render function that accepts props and children and that returns rendered DOM el; render passed as first argument to context function.
  3. Passes helpers to context function as second argument.
var Component = rewire('component');

describeComponent(Component, function(render, helpers) {
  // Tests here.
});

render

It accepts:

  1. props - Object with props that will be passed to component (optional, can be null),
  2. children - *, children that will be passed to component (optional).
// Will render described component with `{ color: 'red' }` as props and
// `'Children'` as children.
render({ color: 'red' }, 'Children');

render have with function that binds props and children to render:

var bindedRender = render.with({ color: 'red' }, 'Children');
// Will render described component with `{ color: 'red' }` as props and
// `'Children'` as children.
bindedRender();

helpers

TODO

Ensure that component render given text

it('renders children as text', function() {
  var text = 'Check, check, 1, 2, 3.';
  expect(render.with(null, text)).to.render.text(text);
});

Ensure that component's el/nested el has given class/text/attr

Compound expectation

Root element:

it('renders link with "is-red" class for `color` equals "red"', function() {
  expect(render.with({ color: 'red' }, 'Click me!')).to.render.el({
    is: '.is-red',
    href: '#',
    text: 'Click me!'
  });
});

Nested element:

it('renders link with "is-red" class for `color` equals "red"', function() {
  expect(render.with({ color: 'red' }, 'Click me!')).to.render.el({
    find: 'a',
    is: '.is-red',
    href: '#',
    text: 'Click me!',
    props: {
      disabled: false,
      value: 'Value'
    }
  });
});

Has class name

expect(render).to.render.el.withClass('link');

Match selector

expect(render).to.render.el.matches('a.link');

Attr expectation

expect(render).to.render.el.withAttr('href', '#');

Attrs expectation

expect(render).to.render.el.withAttrs({
  href: '#',
  rel: 'link'
});

Prop expectation

expect(render).to.render.el.withProp('disabled', false);

Props expectation

expect(render).to.render.el.withProps({
  disabled: false,
  value: 'Value'
});

Has value

expect(render).to.render.el.withValue('Input value');

Nested el

expect(render).to.render.el.contains('.link-icon');

Ensure that component renders another component with given props/children

Component:

it('renders another component', function() {
  expect(render).to.render.component('AnotherComponent');
});

Component with props and children (expect props equality):

it('renders another component with specified props and children', function() {
  expect(render).to.render.component('AnotherComponent', {
    with: [
      {
        type: 'test',
        color: 'red'
      },
      'Text'
    ]
  });
});

Fuzzy match of props:

it('renders another component with specified props and children', function() {
  expect(render).to.render.component('AnotherComponent', {
    with: [
      match({
        type: 'test',
        color: 'red'
      }),
      'Text'
    ]
  });
});

Ensure that component render collection of components (with props/children)

Works the same way as component but instead of props and children as second and thrid arguments it accepts array of arrays.

it('renders another component with specified props and children', function() {
    expect(render).to.render.components('AnotherComponent', {
      with: [
        [{ type: 'test', color: 'red' }, 'Text'],
        [{ type: 'test', color: 'green' }, 'Text']
      ]
    });
});

Ensure that component bind events

TODO

Ensure that component calls given actions

TODO

Testing component mixins

TODO