-
Notifications
You must be signed in to change notification settings - Fork 2
Home
Ricky Rhodes edited this page Jan 19, 2021
·
43 revisions
| Table of Contents |
|---|
| Project Management |
| Norms |
| Standup Info |
| Tiers Checklist |
| To-do List |
| Repo |
| Team |
| Project Architecture |
| Architecture |
| DB Schema |
| Wireframes |
| Project Names Ideas |
| Standards |
| Naming Conventions |
| Commit Convention |
| Testing Style |
| Workflows |
| Pre-Pull Request Workflow |
| Magic Methods |
| Resolving Merge Conflicts |
| Documentation |
| NPM Packages |
- Ned Brennan — nedbrnnn@gmail.com
- Morgan Hu — morgan.hu738@gmail.com
- Azriel Goldman — azmaster3000@gmail.com
- Ricky Rhodes — rickyarhodes@gmail.com
http://wallpapr.herokuapp.com/
- CODENAME: wallpapr
- Bigscreen
- wallpapr.jpg
- pixlr
- Components: PascalCase // eg.
AllProducts.js - Reducers: camelCase // eg.
myStore.js - Tests: type.spec.js // eg.
AllProducts.test.js,myStore.test.js
- Semantic style — http://karma-runner.github.io/4.0/dev/git-commit-msg.html
- eg.
feat(add User model to database) - what is being added(summary of what it does) - more details if needed.
- Framework: Mocha
- Assertions: Chai
- Front-end: Enzyme
- Back-end: Supertest
Please write tests with the expect style in Chai
https://www.chaijs.com/guide/styles/#expect
npx mocha ./client/components/OrderConfirmed.spec.js --require @babel/polyfill --require @babel/register -w
- From current feature branch
git stashgit pull origin mastergit stash applygit add <new feature>git commit -m <commit message>git push