Commit c875f715 by Ben Patterson

Disable flaky javascript tests TL-439

parent eefd9f23
...@@ -217,7 +217,9 @@ ...@@ -217,7 +217,9 @@
expect(menuSubmenuItem).not.toHaveClass('is-opened'); expect(menuSubmenuItem).not.toHaveClass('is-opened');
}); });
it('mouse left/right-clicking behaves as expected on play/pause menu item', function () { // Flaky-test resulting in timeout errors. Disabled 09/18/2014
// See TNL-439
xit('mouse left/right-clicking behaves as expected on play/pause menu item', function () {
var menuItem = menuItems.first(); var menuItem = menuItems.first();
runs(function () { runs(function () {
// Left-click on play // Left-click on play
......
...@@ -382,7 +382,9 @@ function (VideoPlayer) { ...@@ -382,7 +382,9 @@ function (VideoPlayer) {
}, 'video didn\'t start playing', WAIT_TIMEOUT); }, 'video didn\'t start playing', WAIT_TIMEOUT);
}); });
it('slider event causes log update', function () { // as per TNL-439 this test is deemed flaky and needs to be fixed.
// disabled 09/18/2014
xit('slider event causes log update', function () {
runs(function () { runs(function () {
spyOn(state.videoPlayer, 'log'); spyOn(state.videoPlayer, 'log');
state.videoProgressSlider.onSlide( state.videoProgressSlider.onSlide(
...@@ -416,7 +418,9 @@ function (VideoPlayer) { ...@@ -416,7 +418,9 @@ function (VideoPlayer) {
}); });
}); });
it('seek the player', function () { // as per TNL-439 this test is deemed flaky and needs to be fixed.
// disabled 09/18/2014
xit('seek the player', function () {
runs(function () { runs(function () {
spyOn(state.videoPlayer.player, 'seekTo') spyOn(state.videoPlayer.player, 'seekTo')
.andCallThrough(); .andCallThrough();
...@@ -435,7 +439,9 @@ function (VideoPlayer) { ...@@ -435,7 +439,9 @@ function (VideoPlayer) {
}); });
}); });
it('call updatePlayTime on player', function () { // as per TNL-439 this test is deemed flaky and needs to be fixed.
// disabled 09/18/2014
xit('call updatePlayTime on player', function () {
runs(function () { runs(function () {
spyOn(state.videoPlayer, 'updatePlayTime') spyOn(state.videoPlayer, 'updatePlayTime')
.andCallThrough(); .andCallThrough();
...@@ -475,7 +481,9 @@ function (VideoPlayer) { ...@@ -475,7 +481,9 @@ function (VideoPlayer) {
}); });
}); });
describe('when the video is not playing', function () { // as per TNL-439 these tests are deemed flaky and needs to be fixed.
// disabled 09/18/2014
xdescribe('when the video is not playing', function () {
beforeEach(function () { beforeEach(function () {
spyOn(state.videoPlayer, 'setPlaybackRate') spyOn(state.videoPlayer, 'setPlaybackRate')
.andCallThrough(); .andCallThrough();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment