Skip to content

Commit

Permalink
Merge pull request #14 from Blockchain-Country/updatedtitle
Browse files Browse the repository at this point in the history
updated title text at in app.js
  • Loading branch information
Blockchain-Country authored Nov 5, 2024
2 parents 1e0db18 + d44d397 commit 52ead46
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
name="description"
content="Web site created using create-react-app"
/>
<title>Book Storage</title>
<title>Books Storage</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function App() {
return (
<div className="app">
<header className="app-header" data-testid="app_header">
<h1>My Book Storage</h1>
<h1>My Books Storage</h1>
</header>
<main className="app-main">
<div className="app-left-column">
Expand Down
4 changes: 2 additions & 2 deletions src/App.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ describe('App Component Tests', () => {
bookList_Component = screen.getByTestId('bookList_component')
})

test('Should render the Header to be in the DOM and should contain text "My Book Storage"', async () => {
test('Should render the Header to be in the DOM and should contain text "My Books Storage"', async () => {
expect(header).toBeInTheDocument()
expect(header).toHaveTextContent('My Book Storage')
expect(header).toHaveTextContent('My Books Storage')
})

test('Should render the ManualBookForm component in the DOM', () => {
Expand Down

0 comments on commit 52ead46

Please sign in to comment.