@automated/automated
TypeScript icon, indicating that this package has built-in type declarations

0.100.0 • Public • Published

Automated ⚙️

Automated is a test framework designed to simplify testing by standardizing.

With a few lines of code here’s what you get out of the box:

  1. Multiple viewport visual regression coverage
  2. Jest unit tests (via snapshots)
  3. Code coverage (can persist to CI)
  4. Storybook artifacts (can persist to CI)
  5. Isolated component development environment (Storybook)

Installation

__automated.tsx

Quick start

  1. Go to one of your components and let’s say the component is named “Foo”
  2. Put it in a folder called “foo” with the component file named index.tsx
  3. Make the component the default export
  4. Add a sibling file named __automated.tsx, with the following contents
import Component from '.';

export default {
  Component,
  dirname: __dirname,
};
  1. Then run yarn automated init (You’ll see some files added).
  2. Now you can run yarn automated storybook to see it in an isolated dev environment
  3. Open another terminal and run yarn automated jest to generate snapshots and visual regression tests.

Examples

  1. Least content example
  2. More robust

API

__automated.tsx contents

export default {
  // [required] the subject React component
  Component,

  // [required] this supports automatic naming
  dirname: __dirname,

  // an array of use-cases
  useCases,
};

Contributing

# in one terminal
yarn nps dev

# in another
cd example && AUTOMATED_DEVELOPMENT=true yarn automated jest

/@automated/automated/

    Package Sidebar

    Install

    npm i @automated/automated

    Weekly Downloads

    1

    Version

    0.100.0

    License

    Apache-2.0

    Unpacked Size

    62.8 kB

    Total Files

    69

    Last publish

    Collaborators

    • kirkstrobeck