diff --git a/test/components/contentLoadingTest.js b/test/components/contentLoadingTest.js index ad4dcfad29a..9f878bbcd08 100644 --- a/test/components/contentLoadingTest.js +++ b/test/components/contentLoadingTest.js @@ -29,7 +29,7 @@ describe('content loading', function () { }) }) - it('always returns 100% for battery status API', function * () { + it('does not support battery status API', function * () { var page1 = Brave.fixtureUrl('battery.html') yield this.app.client .tabByIndex(0) @@ -37,7 +37,7 @@ describe('content loading', function () { .windowByUrl(Brave.browserWindowUrl) .waitUntil(function () { return this.getText('.tabTitle').then((title) => { - return title === '100%' + return title === 'fail' }) }) })