Skip to content

Re 2: Calculator 과제 제출합니다. #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 22 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
70f18db
chore: npm, eslint, prettier
PennyBlack2008 Jun 24, 2021
dc7e98e
chore: cypress package 추가
PennyBlack2008 Jun 24, 2021
f099eff
docs: 구현기능 목록 작성, 테스트 코드 목록 작성
PennyBlack2008 Jun 24, 2021
2b6f58c
test: 숫자 버튼을 눌렀을 경우 결과 디스플레이에 표시 여부 테스트코드 작성
PennyBlack2008 Jun 24, 2021
6ed87fd
feat: 0123456789AC 입력 가능
PennyBlack2008 Jun 26, 2021
e5e78de
feat: 숫자 입력 완성 but 숫자저장 못함
PennyBlack2008 Jun 27, 2021
3dbd51e
Docs: review
PennyBlack2008 Jun 28, 2021
cce9d68
Dev: js code 작성 및 tsconfig.json 업로드
PennyBlack2008 Jun 29, 2021
d9d785c
Feat: TS works and added cypress test
PennyBlack2008 Jun 30, 2021
d0ea731
Delete: deleted unnecessaries
PennyBlack2008 Jun 30, 2021
3c9e4a5
Fix: 세미콜론 추가, pause 삭제
PennyBlack2008 Jun 30, 2021
7c90bde
Feat: added yarn build, yarn clean
PennyBlack2008 Jun 30, 2021
358b846
Fix: getElementById -> querySelector, divide
PennyBlack2008 Jun 30, 2021
c414fab
Fix: describe, it 이름 변경
PennyBlack2008 Jun 30, 2021
aa63ae4
Docs: README.md update
PennyBlack2008 Jun 30, 2021
5606ca9
feat: .gitignore, index.html, package-lock update
PennyBlack2008 Jun 30, 2021
5e8a6c6
Feat: added some more tests
PennyBlack2008 Jun 30, 2021
4ae7a69
Feat: now it works
PennyBlack2008 Jun 30, 2021
9311056
Chore: added js for demo page
PennyBlack2008 Jun 30, 2021
2014162
Fix: ts/*.js 삭제
PennyBlack2008 Jul 2, 2021
b461fe7
Fix: 3번째 피드백 후 고침
PennyBlack2008 Jul 2, 2021
27319a0
Docs: 할일 추가
PennyBlack2008 Jul 2, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -283,4 +283,17 @@ dist
!.vscode/extensions.json
*.code-workspace

# End of https://www.toptal.com/developers/gitignore/api/vscode,node,intellij
### CypressIO ###
# gitignore template for the CypressIO, browser test framework
# website: https://www.cypress.io/

cypress/results/*
cypress/reports/*
cypress/screenshots/*
cypress/videos/*

# End of https://www.toptal.com/developers/gitignore/api/vscode,node,intellij,cypressio

cypress/integration/sample_spec.js
cypress/integration/test.js
js/
Loading