Skip to content

Commit

Permalink
removed only key word from 1st test
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaileshParmar11 committed Aug 21, 2022
1 parent ceb4420 commit 3859a0b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cypress/e2e/homePage.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe("Test home page", () => {
cy.visit("/");
});

it.only("Header component should render properly", () => {
it("Header component should render properly", () => {
cy.get('[data-testid="app-header"]').should("be.visible");
cy.get('[data-testid="app-logo"]').should("be.visible");
cy.get('[data-testid="plays-search-box-container"]').should("not.exist");
Expand All @@ -21,7 +21,6 @@ describe("Test home page", () => {

cy.get("@browseBtn").click();
cy.get('[data-testid="plays-search-box-container"]').should("be.visible");

});

it("Tweet section should render with all tweets", () => {
Expand Down

0 comments on commit 3859a0b

Please sign in to comment.