quick-install

Quickly install the package you're working on for faster tests

Usage no npm install needed!

<script type="module">
  import quickInstall from 'https://cdn.skypack.dev/quick-install';
</script>

README

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