diff options
author | prathamesh | 2017-09-01 16:51:37 +0530 |
---|---|---|
committer | prathamesh | 2017-09-01 16:51:37 +0530 |
commit | e2c65655dcdc5558cfb4ab668c3012024d27ac75 (patch) | |
tree | 9ec6504e6bdc2f35f37260981ab584d1b9b3b9b4 /yaksh/static | |
parent | 3d9bce5471d04bf50e03155d3cd67bdae44a4fcc (diff) | |
download | online_test-e2c65655dcdc5558cfb4ab668c3012024d27ac75.tar.gz online_test-e2c65655dcdc5558cfb4ab668c3012024d27ac75.tar.bz2 online_test-e2c65655dcdc5558cfb4ab668c3012024d27ac75.zip |
Removed all the checkpoints set for selenium tests on travis
javascript strings includes method changed to indexOf, as includes
belongs to ES6. This was the main reason for failure of selenium tests
on travis.
Diffstat (limited to 'yaksh/static')
-rw-r--r-- | yaksh/static/yaksh/js/requesthandler.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/static/yaksh/js/requesthandler.js b/yaksh/static/yaksh/js/requesthandler.js index 39114e7..9890b54 100644 --- a/yaksh/static/yaksh/js/requesthandler.js +++ b/yaksh/static/yaksh/js/requesthandler.js @@ -116,7 +116,7 @@ $(document).ready(function(){ global_editor.editor.clearHistory(); } $('#code').submit(function(e) { - checker = setInterval(check_lock_screen, 20000); + checker = setInterval(check_lock_screen, 30000); lock_screen(); $.ajax({ type: 'POST', |