diff --git a/contact.html b/contact.html
index 383b145..e3037b2 100644
--- a/contact.html
+++ b/contact.html
@@ -155,6 +155,16 @@
Contact Me
@tylermneher |
+
+ Medium |
+ @tylermneher |
+
+
+ Stack Overflow |
+ @12592276 |
+
ORCID |
Contact Me
Microsoft Learn |
@tylermneher |
+ href="https://learn.microsoft.com/en-us/users/tylermneher/">@tylermneher
+
diff --git a/cypress/e2e/contact.cy.js b/cypress/e2e/contact.cy.js
index 5c7805d..7c24fa6 100644
--- a/cypress/e2e/contact.cy.js
+++ b/cypress/e2e/contact.cy.js
@@ -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");
|