cutenode / good-first-issue

🖥 CLI for finding good first issues
736 stars 123 forks source link

More tests #95

Closed JasonEtco closed 5 years ago

JasonEtco commented 5 years ago

👋 This PR adds a test for the index.js goodFirstIssue file, and makes an attempt at organizing the test files a little differently. I poked around in #1 but didn't see any proposed implementation details, so I just went ahead and put things into a /tests/ folder, which is what I normally do in my own projects.

I've added nock, a wonderful library for mocking network requests. It allows us to not mock the Octokit library, but instead let Octokit do its thing as normal but be given our own fixture data instead of actually reaching out to the GitHub API. This way, we're replacing less code in our tests, and making them more reliable.

If possible, this should be merged before #89 so that I can add some tests into the index.spec.js file, and verify that the appropriate query params are being sent to the Search API.

I also fixed some formatting/whitespace/consistency things 😊 There's more tweaks I want to do (like var => const, wrapping test suites in describe()s) but I don't want this PR to get too difficult to review.