E2E Test Automation Anti-Pattern: node_modules and package.json or alike
It results from bringing “Developer Mindset and Practice” to E2E Test Automation.
6 min readDec 4, 2023
This is an article in the E2E Test Automation Anti-Pattern series.
Why do some software engineers create jokes about node_modules, like the one below?
Because they (JS engineers) don’t like it. One common pain is accidentally committing the node_modules
folder into the Git repository and pushing it up!
Of course, the solution is simple: add node_modules
in the .gitignore
file.