Skip to content

Instantly share code, notes, and snippets.

@idembele70
Last active July 23, 2024 08:33
Show Gist options
  • Save idembele70/9eb9346dbee0dcd060e1a10809009576 to your computer and use it in GitHub Desktop.
Save idembele70/9eb9346dbee0dcd060e1a10809009576 to your computer and use it in GitHub Desktop.
Github Q & A From EJ

GITHUB QUESTIONS AND ANSWER

Can an issue have multiple Pull Request?

  • Yes, of course because an issue can have multiple changes to solve it.
  • One issue pointing to one pull request
  • image

Why I'm not allowed to merge approved Pull Request ?

  • It's not your job, if a merge creates a issue would you be able to distangle yourself ?
  • Would you be able to revert it, reapprove and merge the revert ?
  • image

Why unit testing is better than E2E testing

  • Jest (unit testing) is faster to execute than playwright
  • If the code is well written, you should do UT (Unit Testing)/ IT (Integration Testing)
  • image
  • image
  • More flexible
  • image

Why doing auto test

Why the perfect code doesn't exist

  • In computing, there's no good solution or perfect solution
  • there's always a pro and a con.
  • image
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment