Skip to content

Commit

Permalink
fix: drop use of only in cypress specs
Browse files Browse the repository at this point in the history
  • Loading branch information
benfurber committed Oct 1, 2024
1 parent bf245b8 commit b430105
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/cypress/src/integration/SignUp.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ describe('[User sign-up]', () => {
})

describe('[Update existing auth details]', () => {
it.only('Updates username and password', () => {
it('Updates username and password', () => {
const user = generateNewUserDetails()
const { email, username, password } = user
cy.signUpNewUser(user)
Expand Down
2 changes: 1 addition & 1 deletion packages/cypress/src/integration/common.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('[Common]', () => {
cy.url().should('include', '/map')
})

describe.only('[User feeback button]', () => {
describe('[User feeback button]', () => {
it('[Desktop]', () => {
cy.visit('/how-to')
cy.get('[data-cy=feedback]').should('contain', 'Report a Problem')
Expand Down

0 comments on commit b430105

Please sign in to comment.