Skip to content

Commit

Permalink
chore: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpaxton committed Jan 9, 2020
1 parent c8899a6 commit 7ae073b
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions ui/cypress/e2e/explorer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -647,16 +647,14 @@ describe('DataExplorer', () => {

describe('as a task', () => {
beforeEach(() => {
cy.getByTestID('task--radio-button')
.click()
cy.getByTestID('task--radio-button').click()
})

it('should autoselect the first bucket', () => {
cy.getByTestID('task-options-bucket-dropdown--button').within(() => {
cy.get('span.cf-dropdown--selected')
.then((elem) => {
expect(elem.text()).to.include('defbuck')
})
cy.get('span.cf-dropdown--selected').then(elem => {
expect(elem.text()).to.include('defbuck')
})
})
})
})
Expand Down

0 comments on commit 7ae073b

Please sign in to comment.