Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
c875f715
Commit
c875f715
authored
Sep 18, 2014
by
Ben Patterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable flaky javascript tests TL-439
parent
eefd9f23
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
5 deletions
+15
-5
common/lib/xmodule/xmodule/js/spec/video/video_context_menu_spec.js
+3
-1
common/lib/xmodule/xmodule/js/spec/video/video_player_spec.js
+12
-4
No files found.
common/lib/xmodule/xmodule/js/spec/video/video_context_menu_spec.js
View file @
c875f715
...
...
@@ -217,7 +217,9 @@
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
();
runs
(
function
()
{
// Left-click on play
...
...
common/lib/xmodule/xmodule/js/spec/video/video_player_spec.js
View file @
c875f715
...
...
@@ -382,7 +382,9 @@ function (VideoPlayer) {
},
'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
()
{
spyOn
(
state
.
videoPlayer
,
'log'
);
state
.
videoProgressSlider
.
onSlide
(
...
...
@@ -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
()
{
spyOn
(
state
.
videoPlayer
.
player
,
'seekTo'
)
.
andCallThrough
();
...
...
@@ -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
()
{
spyOn
(
state
.
videoPlayer
,
'updatePlayTime'
)
.
andCallThrough
();
...
...
@@ -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
()
{
spyOn
(
state
.
videoPlayer
,
'setPlaybackRate'
)
.
andCallThrough
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment