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 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-drip-form-test-utils

v0.0.1-alpha.1

Published

Provides useful utilities for testing react-drip-form.

Downloads

6

Readme

react-drip-form-test-utils

Build Status Codecov npm version

Provides useful utilities for testing react-drip-form.

Mainly provide mocks for testing components. Enjoy the testing for react-drip-form :coffee:

Table of Contents

Installation

You can install stable version at npm.

$ npm install --save-dev react-drip-form-test-utils

API

mockContext(context = {})

Create mock of Context provided by dripForm().

import { mockContext } from 'react-drip-form-test-utils';

const context = mockContext({
  originalContext: 'original',
  values: { foo: 'bar' },
  dirties: ['foo'],
});

expect(context).toEqual({
  originalContext: 'original', // add context
  dripForm: true,
  group: null,
  register: noop,
  unregister: noop,
  updateValue: noop,
  updateTouched: noop,
  updateDirty: noop,
  updateValidations: noop,
  updateNormalizers: noop,
  updateMessages: noop,
  updateLabel: noop,
  validating: [],
  values: { foo: 'bar' }, // override
  errors: {},
  touches: [],
  dirties: ['foo'], // override
});

mockFormProps(props = {})

Create a Props mock that is provided when wrapping a component with dripForm().
I'ts useful for handlers testing etc.

import { mockFormProps } from 'react-drip-form-test-utils';

const onSubmit = jest.fn();

const props = mockFormProps({
  customProp: 'foo',
  values: { bar: 'baz' },
  meta: {
    touched: true,
    untouched: false,
  },
  handlers: {
    onSubmit,
  },
});

expect(props).toEqual({
  customProp: 'foo', // add props
  values: { bar: 'baz' }, // override
  errors: {},
  meta: {
    valid: false,
    invalid: true,
    touched: true, // override
    untouched: false, // override
    dirty: false,
    pristine: true,
    validating: false,
  },
  fields: {
    get: noop,
    set: noop,
    remove: noop,
    push: noop,
    pop: noop,
    shift: noop,
    unshift: noop,
    swap: noop,
    move: noop,
    map: noop,
    forEach: noop,
    isValid: noop,
    isValidating: noop,
  },
  handlers: {
    onSubmit: onSubmit, // jest mock
    onClear: noop,
    onReset: noop,
  },
});

mockFieldProps(props = {})

Create a Props mock that is provided when wrapping a component with dripFormField().

import { mockFieldProps } from 'react-drip-form-test-utils';

const onChange = jest.fn();

const props = mockFieldProps({
  customProp: 'foo',
  input: {
    onChange,
  },
  meta: {
    error: 'Error!!',
  },
});

expect(props).toEqual({
  customProp: 'foo', // add props
  input: {
    name: 'mockField',
    value: null,
    onChange: onChange, // jest mock
    onFocus: noop,
    onBlur: noop,
  },
  meta: {
    label: null,
    error: 'Error!!', // override
    errors: [],
    valid: false,
    invalid: true,
    touched: false,
    untouched: true,
    dirty: false,
    pristine: true,
    validating: false,
  },
});

mockGroupProps(props = {})

Create a Props mock that is provided when wrapping a component with dripFormGroup().

import { mockGroupProps } from 'react-drip-form-test-utils';

const props = mockGroupProps({
  customProp: true,
  meta: {
    label: 'Foo',
    valid: true,
    invalid: false,
  },
});

expect(props).toEqual({
  customProp: true, // add props
  meta: {
    name: 'mockGroup',
    value: null,
    label: 'Foo', // override
    error: null,
    errors: [],
    valid: true, // override
    invalid: false, // override
    touched: false,
    untouched: true,
    dirty: false,
    pristine: true,
    validating: false,
    ...(props.meta || {}),
  },
});

Related projects

Contribute

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Bugs, feature requests and comments are more than welcome in the issues.

License

MIT © tsuyoshiwada