Skip to content

vinsonchuong/quick-install

Repository files navigation

quick-install

npm CI Status dependencies Status devDependencies Status

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')
})

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published