File tree 2 files changed +4
-4
lines changed
common/src/js/core/lib/scriptaculous
ide/src/extension/content/tests/functional
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ Test.Unit.Runner.prototype = {
165
165
}
166
166
this . currentTest = 0 ;
167
167
this . logger = new Test . Unit . Logger ( this . options . testLog ) ;
168
- setTimeout ( this . runTests . bind ( this ) , 1000 ) ;
168
+ setTimeout ( this . runTests . bind ( this ) , 100 ) ;
169
169
} ,
170
170
parseResultsURLQueryParameter : function ( ) {
171
171
return window . location . search . parseQuery ( ) [ "resultsURL" ] ;
Original file line number Diff line number Diff line change 28
28
</ div >
29
29
< script type ="text/javascript ">
30
30
Test . Unit . Testcase . prototype . waitFor = function ( condition , nextPart ) {
31
- this . wait ( 3000 , function ( ) {
31
+ this . wait ( 200 , function ( ) {
32
32
if ( condition ( ) ) {
33
33
nextPart ( ) ;
34
34
} else {
44
44
teardown : function ( ) {
45
45
} ,
46
46
47
- testPlay : function ( ) { with ( this ) {
47
+ testCore : function ( ) { with ( this ) {
48
48
var editor = SeleniumIDE . Loader . getTopEditor ( ) ;
49
49
var testCase = editor . app . getFormats ( ) . getDefaultFormat ( ) . loadFile ( "chrome://selenium-ide/content/selenium-tests/tests/" + gup ( 'test' ) , true ) ;
50
50
editor . app . setTestCaseWithNewSuite ( testCase ) ;
51
51
editor . app . setBaseURL ( "chrome://selenium-ide/content/selenium-tests/tests/" ) ;
52
52
var testWindow = editor . showInBrowser ( "about:blank" , true ) ;
53
53
var complete = false ;
54
- wait ( 1000 , function ( ) {
54
+ wait ( 500 , function ( ) {
55
55
editor . selDebugger . start ( function ( failed ) {
56
56
assert ( ! failed ) ;
57
57
complete = true ;
You can’t perform that action at this time.
0 commit comments