Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions cypress/component/Home/home.spec.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ describe('Home Page - Tests', function () {

it('renders the page header correctly', function () {
cy.contains('Data Use Oversight System').should('be.visible')
cy.contains('Get data faster').should('be.visible')
cy.contains('Access data faster').should('be.visible')
})

it('renders the Data Libraries section with consistent message', function () {
Expand Down Expand Up @@ -71,7 +71,7 @@ describe('Home Page - Tests', function () {

it('renders the page header correctly', function () {
cy.contains('Data Use Oversight System').should('be.visible')
cy.contains('Get data faster').should('be.visible')
cy.contains('Access data faster').should('be.visible')
})

it('renders the Data Libraries section with clickable message', function () {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ const Home = (props) => {
<img style={duosLogo} alt="DUOS logo" src={duosLogoImg} />
<h1 style={homeTitle}>Data Use Oversight System</h1>
<div className="hidden-xs" style={homeBannerDescription}>
Get data faster.
Access data faster.
{' '}
</div>
</div>
Expand Down
Loading