Skip to content

Commit

Permalink
added to contacts:
Browse files Browse the repository at this point in the history
1. medium
2. stack overflow

Signed-off-by: Tyler M. Neher <[email protected]>
  • Loading branch information
tylermneher committed May 14, 2024
1 parent e5d1c6b commit 290c510
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
13 changes: 12 additions & 1 deletion contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,16 @@ <h2>Contact Me</h2>
<td><a data-cy="contact-body-table-hackernews"
href="https://news.ycombinator.com/user?id=tylermneher">@tylermneher</a></td>
</tr>
<tr>
<td>Medium</td>
<td><a data-cy="contact-body-table-medium"
href="https://medium.com/@tylermneher">@tylermneher</a></td>
</tr>
<tr>
<td>Stack Overflow</td>
<td><a data-cy="contact-body-table-stackoverflow"
href="https://stackoverflow.com/users/12592276/tyler-m-neher">@12592276</a></td>
</tr>
<tr>
<td>ORCID</td>
<td><a data-cy="contact-body-table-orcid"
Expand All @@ -163,7 +173,8 @@ <h2>Contact Me</h2>
<tr>
<td>Microsoft Learn</td>
<td><a data-cy="contact-body-table-mslearn"
href="https://learn.microsoft.com/en-us/users/tylermneher/">@tylermneher</a></td>
href="https://learn.microsoft.com/en-us/users/tylermneher/">@tylermneher</a>
</td>
</tr>

</tbody>
Expand Down
10 changes: 10 additions & 0 deletions cypress/e2e/contact.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,16 @@ describe("Contact", function () {
cy.get('[data-cy="contact-body-table-x"]').should("have.attr", "href", "https://www.twitter.com/tylermneher");
cy.get('[data-cy="contact-body-table-x"]').should("have.text", "@tylermneher");
});
context("Testing the Body Table Medium Link", function () {
cy.get('[data-cy="contact-body-table-medium"]').should("be.visible");
cy.get('[data-cy="contact-body-table-medium"]').should("have.attr", "href", "https://medium.com/@tylermneher");
cy.get('[data-cy="contact-body-table-medium"]').should("have.text", "@tylermneher");
});
context("Testing the Body Table Stack Overflow Link", function () {
cy.get('[data-cy="contact-body-table-stackoverflow"]').should("be.visible");
cy.get('[data-cy="contact-body-table-stackoverflow"]').should("have.attr", "href", "https://stackoverflow.com/users/12592276/tyler-m-neher");
cy.get('[data-cy="contact-body-table-stackoverflow"]').should("have.text", "@12592276");
});
context("Testing the Body Table YouTube Link", function () {
cy.get('[data-cy="contact-body-table-youtube"]').should("be.visible");
cy.get('[data-cy="contact-body-table-youtube"]').should("have.attr", "href", "https://www.youtube.com/@tylermneher");
Expand Down

0 comments on commit 290c510

Please sign in to comment.