Skip to content

Commit

Permalink
feat: change platform name
Browse files Browse the repository at this point in the history
  • Loading branch information
AuraAlba committed Feb 29, 2024
1 parent 3499b27 commit 6122251
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/features/Main/Header/_test_/index.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ describe('Header', () => {
</AppContext.Provider>,
);

const titleApp = getByText('CertPREP Training Center Dashboard');
const titleApp = getByText('CertPREP Management Portal');
const userName = getByText('User');

expect(userName).toBeInTheDocument();
Expand Down
2 changes: 1 addition & 1 deletion src/features/Main/Header/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const Header = () => {
<a href={`${getConfig().LMS_BASE_URL}`}>
<img src={`${getConfig().LOGO_INSTITUTION_PORTAL}`} alt="icon" />
</a>
<h3 className="platform-name">CertPREP Training Center Dashboard</h3>
<h3 className="platform-name">CertPREP Management Portal</h3>
</div>
<div className="header-rigth d-flex align-items-center">
<a href={questionsLink()}>
Expand Down
2 changes: 1 addition & 1 deletion src/features/Main/_test_/index.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe('Main component', () => {
</Provider>,
);

const titleApp = getByText('CertPREP Training Center Dashboard');
const titleApp = getByText('CertPREP Management Portal');
expect(titleApp).toBeInTheDocument();

const button = screen.getByRole('button', { expanded: false });
Expand Down

0 comments on commit 6122251

Please sign in to comment.