Skip to content

Commit

Permalink
Merge pull request #970 from girder/harden-test
Browse files Browse the repository at this point in the history
Harden test for no-event-stream.
  • Loading branch information
manthey authored Sep 28, 2022
2 parents 214d48f + 5933249 commit 69b39cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion girder/test_girder/test_web_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ def testWebClientNoStream(boundServer, fsAssetstore, db, spec, girderWorker):
Setting().set(SettingKey.ENABLE_NOTIFICATION_STREAM, False)

spec = os.path.join(os.path.dirname(__file__), 'web_client_specs', spec)
runWebClientTest(boundServer, spec, 15000)
runWebClientTest(boundServer, spec, 60000)
4 changes: 2 additions & 2 deletions girder/test_girder/web_client_specs/imageViewerSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ $(function () {
return !$('.g-item-image-viewer-select').length;
}, 'select button to vanish', 15000);
girderTest.waitForLoad();
});
}, 30000);
it('upload test file', function () {
girderTest.waitForLoad();
runs(function () {
Expand Down Expand Up @@ -184,7 +184,7 @@ $(function () {
return $('.g-item-image-viewer-select').length > 0 && $('.g-large-image-remove').length > 0;
}, 'job to complete', 15000);
girderTest.waitForLoad();
});
}, 30000);
});
describe('test metadata in item lists', function () {
it('go to users page', girderTest.goToUsersPage());
Expand Down

0 comments on commit 69b39cb

Please sign in to comment.