├── .async.js.swp ├── .gitignore ├── README.md ├── authenticate.js ├── css └── style.css ├── fetchdata.js ├── index.html ├── package.json ├── spec.md └── tests └── jest ├── sum.js └── tests.test.js /.async.js.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaykgupta/GoodFirstIssue/HEAD/.async.js.swp -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .env 3 | 4 | 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GoodFirstIssue 2 | -------------------------------------------------------------------------------- /authenticate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaykgupta/GoodFirstIssue/HEAD/authenticate.js -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaykgupta/GoodFirstIssue/HEAD/css/style.css -------------------------------------------------------------------------------- /fetchdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaykgupta/GoodFirstIssue/HEAD/fetchdata.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaykgupta/GoodFirstIssue/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaykgupta/GoodFirstIssue/HEAD/package.json -------------------------------------------------------------------------------- /spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaykgupta/GoodFirstIssue/HEAD/spec.md -------------------------------------------------------------------------------- /tests/jest/sum.js: -------------------------------------------------------------------------------- 1 | 2 | function sum(a, b) { 3 | return a + b; 4 | } 5 | module.exports = sum; 6 | 7 | 8 | -------------------------------------------------------------------------------- /tests/jest/tests.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaykgupta/GoodFirstIssue/HEAD/tests/jest/tests.test.js --------------------------------------------------------------------------------