Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tmeasday/preserve-symlinks-test


https://github.com/tmeasday/preserve-symlinks-test

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Jest acts like --preserve-symlinks

Try the following

```
npm install

# This should fail, because `b` cannot require `a`
node app/index.js

# This should succeed, because this is what the flag does
node --preserve-symlinks app/index.js

# Interestingly, this behaves like the second
npm test
```