quick-install
v2.0.3
Published
Quickly install the package you're working on for faster tests
Downloads
279
Readme
quick-install
Quickly install the package you're working on for faster tests
quick-install
aims to speed up automated tests during package development by
performing a fake package installation. Given a target directory, the package is
symlinked into its node_modules
directory, and any executables (listed in the
bin
field of package.json
) are symlinked into node_modules/.bin
Usage
Install quick-install by running:
yarn add quick-install
Then use in your test cases as follows:
import install from 'quick-install'
test('my package works', async t => {
await install(process.cwd(), '/tmp/test-project')
})