Skip to content

Commit

Permalink
Merge pull request #57 from Real-Dev-Squad/55-followup-upgrading-pack…
Browse files Browse the repository at this point in the history
…ages

chore(55): cleaned up package.json
  • Loading branch information
ankushdharkar authored Aug 26, 2024
2 parents 3a24662 + e8845a3 commit bb159af
Show file tree
Hide file tree
Showing 4 changed files with 1,342 additions and 1,291 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
Create a simple react app that has tests working

Clone this repo and ensure that you are following [Git Flow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow) convention to
submitting PRs to your OWN repo
Clone this repo and ensure that you are following [Git Flow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow) convention to submitting PRs to your OWN repo

## To Do

- [ ] Setup testing framework
- [ ] Add tests
- [ ] Setup GitHub actions
Expand Down Expand Up @@ -37,7 +37,7 @@ Ensure that your milestone tests are passing, before submitting the PR

## Milestone vocabulary

Starbucks has the following denotions for sizes:
Starbucks has the following denotations for sizes:

```
Tall - Small glass
Expand All @@ -56,7 +56,6 @@ Trenta - Biggest bucket

- Testing Overview - [Official Docs](https://reactjs.org/docs/testing.html)


## What we will be developing?
## What will we be developing?

A guide for beginners to understand and learn Testing in ReactJS Project. This would be a detail documentation on Testing.
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "react-sign-up-with-tests",
"version": "0.1.0",
"private": true,
"version": "0.2.0",
"license": "MIT",
"dependencies": {
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.4.8",
"t @testing-library/react": "16.0.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "14.5.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-scripts": "5.0.1",
"web-vitals": "4.2.3"
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "^5.0.1",
"web-vitals": "^4.2.3"
},
"scripts": {
"start": "react-scripts start",
Expand Down Expand Up @@ -41,6 +41,6 @@
"yarn": "1.22.19"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "7.21.11"
"@babel/plugin-proposal-private-property-in-object": "^7.21.11"
}
}
4 changes: 2 additions & 2 deletions src/components/starbucks-input/StarbucksInput.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default function StartbucksInput() {
export default function StarbucksInput() {
return (
<div>StartBuckCoffee</div>
<div>Starbucks Coffee</div>
)
}
Loading

0 comments on commit bb159af

Please sign in to comment.