-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update link to my website finally
- Loading branch information
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ const Contact: NextPage = () => { | |
email: <Link href="mailto:[email protected]">[email protected]</Link> | ||
</li> | ||
<li> | ||
site: <Link href="https://donbarbos.vercel.app">donbarbos.vercel.app</Link> | ||
site: <Link href="https://donbarbos.me">donbarbos.me</Link> | ||
</li> | ||
<li> | ||
github: <Link href="https://github.com/donBarbos">@donbarbos</Link> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ describe('Contact', () => { | |
it('should render the correct contact information', () => { | ||
render(<Contact />) | ||
const email = screen.getByText(/[email protected]/i) | ||
const site = screen.getByText(/donbarbos.vercel.app/i) | ||
const site = screen.getByText(/donbarbos.me/i) | ||
const github = screen.getAllByText(/@donBarbos/i)[0] | ||
const telegram = screen.getAllByText(/@donBarbos/i)[1] | ||
const sourceCodeLink = screen.getByText(/this link/i) | ||
|