Track vaporwave music labels for available merch.
Live app: http://merch.iwanttorelease.com
Node.js 16 installed.
npm install
npm run test
npm run dev-db # shell 1
npm start # shell 2
npm build
After a recent dependency update, the tests wouldn't run anymore. The testing script in package.json now has 3 flags added to it to make the tests runnable, here's what they mean and why they were necessary:
--transformIgnorePatterns "node_modules/(?!@toolz/allow-react)/" --env=jsdom:
https://dev.to/bytebodger/how-i-fixed-the-unexpected-token-error-in-jest-4o1j
--resetMocks false
: jestjs/jest#9131 (comment)