jest-config-stripes: define a `stripes-jest` script
Description
Summary: jest-config-stripes’s package.json file should define a script, stripes-jest, that provides a simple wrapper around jest.
Details: We consolidate all our jest-related dependencies in jest-config-stripes. In order for applications to properly leverage this, jest-config-stripes should also define a script that dependent repositories can call to invoke jest. yarn allows us to do this at present, but other package manager will not allow a transitive dependency to be so invoked.
Define a script named stripes-jest that consuming projects can use to run jest tests in their codebase. It should be a simple wrapper around jest that forwards all arguments to the underlying command.
Summary: jest-config-stripes’s
package.json
file should define a script,stripes-jest
, that provides a simple wrapper aroundjest
.Details: We consolidate all our jest-related dependencies in jest-config-stripes. In order for applications to properly leverage this, jest-config-stripes should also define a script that dependent repositories can call to invoke jest. yarn allows us to do this at present, but other package manager will not allow a transitive dependency to be so invoked.
Define a script named
stripes-jest
that consuming projects can use to run jest tests in their codebase. It should be a simple wrapper aroundjest
that forwards all arguments to the underlying command.