Skip to content

Instantly share code, notes, and snippets.

View ajaysaini-sgvu's full-sized avatar
🎯
Focusing

Ajay Saini ajaysaini-sgvu

🎯
Focusing
  • India
View GitHub Profile
@skynyrd
skynyrd / enzyme.md
Last active April 20, 2020 04:42
Testing React & Redux app w templates using Enzyme, Mocha and Expect
Reminder
  • shallow -> Renders one layer deep.
  • mount -> To render component with a child.
@leny
leny / .eslintrc.json
Last active June 21, 2024 06:31
ESLint config file for node.js + ES6 projects.
{
"env": {
"node": true,
"es6": true
},
"ecmaFeatures": {
"arrowFunctions": true,
"blockBindings": true,
"classes": true,
"defaultParameters": true,