Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(ui): improve first time alerting experience #14917

Merged
merged 13 commits into from
Sep 4, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactor(ui): remove tests for tooltips in admin step
These should be handled by Clockface instead
  • Loading branch information
alexpaxton committed Sep 3, 2019
commit 2dbfcbe06f765bd6ed67699316c8c7df1c24b938
21 changes: 0 additions & 21 deletions ui/cypress/e2e/onboarding.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,27 +75,6 @@ describe('Onboarding', () => {
.children('.cf-button--label')
.contains('Continue')

//Check tooltips
cy.getByTestID('form-elem--orgname')
.children('[data-testid=form--label]')
.children('div.question-mark-tooltip')
.trigger('mouseenter')
.children('div[data-id=tooltip]')
.contains('An organization is')
.should($tt => {
expect($tt).to.have.class('show')
})

cy.getByTestID('form-elem--bucketname')
.children('[data-testid=form--label]')
.children('div.question-mark-tooltip')
.trigger('mouseenter')
.children('div[data-id=tooltip]')
.contains('A bucket is')
.should($tt => {
expect($tt).to.have.class('show')
})

//Input fields
cy.getByTestID('input-field--username').type(user.username)
cy.getByTestID('input-field--password').type(user.password)
Expand Down