2021-07-11 08:42:56 -05:00
---
id: e2e
2022-12-25 12:48:18 -05:00
title: 'End to End testing'
2021-07-11 08:42:56 -05:00
---
2022-02-05 13:39:12 -05:00
### Testing the integrity of React components by publishing in a private registry
2021-09-13 15:14:09 -05:00
2022-12-25 12:48:18 -05:00
> The final stage of a react component is when it is being published and distributed. How can I ensure my packages won’ t crash in production? This talk will help you to test your React components by publishing them to a private registry and running End-to-End tests against them.
2022-02-05 13:39:12 -05:00
< iframe width = "300" height = "600" src = "https://www.youtube.com/embed/bRKZbrlQqLY" title = "YouTube video player" frameborder = "0" allow = "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen > < / iframe >
2021-09-13 15:14:09 -05:00
- [Slides ](https://docs.google.com/presentation/d/1a2xkqj1KlUayR1Bva1bVYvavwOPVuLplxFtup9MI_U4/edit?usp=sharing )
- [Demo ](https://github.com/juanpicado/verdaccio-end-to-end-tests )
2022-02-05 13:39:12 -05:00
## End to End and Verdaccio
2021-09-13 15:14:09 -05:00
2022-02-05 13:39:12 -05:00
Some projects organize packages in multi-packages repositories or [monorepos ](https://github.com/babel/babel/blob/master/doc/design/monorepo.md ). End to End testing is a topic that usually is only relevant for User Interfaces, but from a Node.js perspective, **publishing packages also need to be tested** .
2021-07-11 08:42:56 -05:00
Such approach has been really hard to achieve considering:
2022-12-25 12:48:18 -05:00
- Populate canary packages on public services seems not to be a good idea
- Some self-hosted OSS registries are too heavy
- Offline environments (private networks)
2021-07-11 08:42:56 -05:00
**Verdaccio** is a lightweight registry with zero-configuration that **fits perfectly in any E2E + CI workflow** .
2021-07-27 14:52:49 -05:00
## Implementation {#implementation}
2021-07-11 08:42:56 -05:00
There is no a silver bullet yet, each implementation seems to be specific for each project, you can check some of them in
the following thread [clicking here ](https://stackoverflow.com/a/50222427/308341 ).
2022-02-05 13:39:12 -05:00
## Examples in Open Source
The following projects have examples using Verdaccio in Open Source
### Bash Examples
2022-12-25 12:48:18 -05:00
- [Babel.js ](https://github.com/babel/babel ) _(+35k ⭐️)_
- [Docusaurus ](https://github.com/facebook/docusaurus ) _(+31k ⭐️)_
- [create-react-app ](https://github.com/facebook/create-react-app/blob/master/CONTRIBUTING.md#contributing-to-e2e-end-to-end-tests ) _(+73.5k ⭐️)_
- [Uppy ](https://github.com/transloadit/uppy ) _(+21k ⭐️)_
- [ethereum/web3.js ](https://github.com/ethereum/web3.js ) _(+8k ⭐️)_
- [adobe react-spectrum ](https://github.com/adobe/react-spectrum/pull/2432 ) _(+6k ⭐️)_
- [Mozilla Neutrino ](https://github.com/neutrinojs/neutrino ) _(+3k ⭐️)_
2021-07-11 08:42:56 -05:00
2022-12-25 12:48:18 -05:00
This is the most simple example using Verdaccio in a bash script (extracted from _create-react-app_ ).
2021-07-11 08:42:56 -05:00
```bash
#!/bin/sh
set -e
local_registry="http://0.0.0.0:4873"
# start local registry
tmp_registry_log=`mktemp`
sh -c "mkdir -p $HOME/.config/verdaccio"
sh -c "cp --verbose /config.yaml $HOME/.config/verdaccio/config.yaml"
sh -c "nohup verdaccio --config $HOME/.config/verdaccio/config.yaml & >$tmp_registry_log & "
# wait for `verdaccio` to boot
grep -q 'http address' < (tail -f $tmp_registry_log)
# login so we can publish packages
sh -c "npm-auth-to-token -u test -p test -e test@test.com -r $local_registry"
# Run nmp command
sh -c "npm --registry $local_registry publish"
```
2022-02-05 13:39:12 -05:00
### Docker Examples
2021-07-11 08:42:56 -05:00
2022-12-25 12:48:18 -05:00
- [Hyperledger ](https://github.com/hyperledger/fabric-chaincode-node )
2022-02-05 13:39:12 -05:00
2023-01-03 04:29:56 -05:00
### Programmatically Examples
2021-07-11 08:42:56 -05:00
2022-12-25 12:48:18 -05:00
- [Storybook ](https://github.com/storybooks/storybook ) _(+44k ⭐️)_
- [Gatsby ](https://github.com/gatsbyjs/gatsby ) \*(+40k ⭐️)
2022-02-05 13:39:12 -05:00
#### Verdaccio module
Via CLI:
2022-12-25 12:48:18 -05:00
- [Aurelia Framework ](https://github.com/aurelia ) _(+12k ⭐️)_
- [Netlify CLI ](https://github.com/netlify/cli ) _(+1k ⭐️)_
- [Embark ](https://embark.status.im/ ) _(+3k ⭐️)_
- [Microsoft Beachball ](https://github.com/microsoft/beachball )
2022-02-05 13:39:12 -05:00
#### Node.js `child_process` examples
2022-12-25 12:48:18 -05:00
- [Angular CLI ](https://github.com/angular/angular-cli ) _(+25k ⭐️)_
- [bit ](https://github.com/teambit/bit ) _(+6k ⭐️)_
- [pnpm ](https://github.com/pnpm/pnpm ) _(+6k ⭐️)_
- [aws-sdk cli v3 ](https://github.com/aws/aws-sdk-js-v3 ) _(+1k ⭐️)_
- [angular-eslint ](https://github.com/angular-eslint/angular-eslint ) _(+1k ⭐️)_
2022-02-05 13:39:12 -05:00
2022-12-25 12:48:18 -05:00
## Example repositories
2021-07-11 08:42:56 -05:00
2022-06-22 16:12:10 -05:00
- [e2e-ci-example-gh-actions ](https://github.com/juanpicado/e2e-ci-example-gh-actions )
- [verdaccio-end-to-end-tests ](https://github.com/juanpicado/verdaccio-end-to-end-tests )
- [verdaccio-fork ](https://github.com/juanpicado/verdaccio-fork )
2023-04-30 15:56:37 -05:00
- [simplified e2e testing using verdaccio ](https://github.com/rluvaton/e2e-verdaccio-example )