Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tmeasday/preserve-symlinks-test
https://github.com/tmeasday/preserve-symlinks-test
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tmeasday/preserve-symlinks-test
- Owner: tmeasday
- Created: 2017-06-22T00:31:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-22T00:32:28.000Z (over 7 years ago)
- Last Synced: 2024-10-25T18:58:14.905Z (3 months ago)
- Language: JavaScript
- Size: 15.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```