Skip to content

Commit

Permalink
fix: log response from adding tweet
Browse files Browse the repository at this point in the history
  • Loading branch information
tobi-bams committed Oct 1, 2024
1 parent 36e1bc3 commit bb2372b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cypress/e2e/addContent/addTweet.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ describe('Add Tweet Content', () => {
url: 'http://localhost:8444/api/add_node*',
}).as('addTweet2')

cy.wait('@addTweet2') // This is because add source is currently skipped,
cy.wait('@addTweet2').then((intersection) => {
cy.log(intersection.response)
}) // This is because add source is currently skipped,

cy.get('.Toastify__toast-body').should('have.text', 'Content Added')

Expand Down

0 comments on commit bb2372b

Please sign in to comment.