Skip to content

Commit

Permalink
s/toNotBe/toBeNot/g
Browse files Browse the repository at this point in the history
Signed-off-by: Kristofer Rye <[email protected]>
  • Loading branch information
rye committed Sep 15, 2019
1 parent 647d9e8 commit 1341de4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions e2e/streaming.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ describe('Streaming Media View', () => {
element(by.id('homescreen-button-StreamingView')),
).toBeVisible()
await element(by.id('homescreen-button-StreamingView')).tap()
await expect(element(by.id('screen-homescreen'))).toNotBeVisible()
await expect(element(by.id('screen-homescreen'))).toBeNotVisible()
await expect(element(by.id('screen-streaming'))).toBeVisible()
})

Expand All @@ -18,7 +18,7 @@ describe('Streaming Media View', () => {
element(by.id('homescreen-button-StreamingView')),
).toBeVisible()
await element(by.id('homescreen-button-StreamingView')).tap()
await expect(element(by.id('screen-homescreen'))).toNotBeVisible()
await expect(element(by.id('screen-homescreen'))).toBeNotVisible()
await expect(element(by.id('screen-streaming'))).toBeVisible()

await expect(element(by.id('stream-list'))).toBeVisible()
Expand All @@ -32,7 +32,7 @@ describe('KSTO Radio View', () => {
element(by.id('homescreen-button-StreamingView')),
).toBeVisible()
await element(by.id('homescreen-button-StreamingView')).tap()
await expect(element(by.id('screen-homescreen'))).toNotBeVisible()
await expect(element(by.id('screen-homescreen'))).toBeNotVisible()
await expect(element(by.id('screen-streaming'))).toBeVisible()

await element(by.id('button-ksto')).tap()
Expand Down

0 comments on commit 1341de4

Please sign in to comment.