This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Paste below gist into Chrome Developer Tools Console: | |
[...document.querySelectorAll('[data-path]:not([data-path^="e2e"]) .js-reviewed-checkbox:not(:checked)')].forEach(el => el.click()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#add 'node_modules' to .gitignore file | |
git rm --cached node_modules | |
git commit -m 'Added node_modules to .gitignore file. Also removed node_modules from git tracking and repository.' | |
git push origin master |