-
Notifications
You must be signed in to change notification settings - Fork 20.6k
Disable test(s) relying on Java applets on BrowserStack #1938
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
As @jzaefferer mentioned, the whole test doesn't need to be dropped, just the |
Looking at the source (and wondering why it's in two places 😕), I think it's important for the
So we don't need an |
This should fix "Java out of date" errors on BrowserStack. Fixes jquerygh-1938
This should fix "Java out of date" errors on BrowserStack. Fixes jquerygh-1938 Closes jquerygh-2028
This should fix "Java out of date" errors on BrowserStack. Fixes jquerygh-1938 Closes jquerygh-2028
The following code triggers the dialog: jQuery.acceptData( document.createElement( "applet" ) ); see Line 776 in 0065e1f
|
BrowserStack regularly has outdated Java in their IE instances causing our data tests to hang & give no output. Skip the assertion if the test is run via TestSwarm. Fix jquerygh-1938
BrowserStack regularly has outdated Java in their IE instances causing our data tests to hang & give no output. Skip the acceptData(applet) assertion, it's treated in the same way as an embed element which we're already testing. Fix jquerygh-1938
BrowserStack regularly has outdated Java in their IE instances causing our data tests to hang & give no output. Skip the acceptData(applet) assertion, it's treated in the same way as an embed element which we're already testing. Fix jquerygh-1938
BrowserStack regularly has outdated Java in their IE instances causing our data tests to hang & give no output. Skip the tests that create applets, applets are treated in the same way as an embed elements which we're already testing. Fixes jquerygh-1938 Closes jquerygh-2166
BrowserStack regularly has outdated Java in their IE instances causing our data tests to hang & give no output. Skip the tests that create applets, applets are treated in the same way as an embed elements which we're already testing. (partially cherry-picked from a4a18e8) Fixes gh-1938 Refs gh-2028 Refs gh-2166
Fixes were landed on |
Per our IRC conversation - from time to time BrowserStack has an out-of-date Java which causes the test run to hang, causing failures for the whole module that uses it. It seems it's just the
jQuery.acceptData
test:jquery/test/unit/data.js
Lines 136 to 162 in d39fef8
This seems to matter for IE8 only, the
master
branch doesn't have any special logic forclassid
handling. It seems there's a hight chance someone from the team will run the test suite on IE8 manually at least once in a while which would catch potential problems; we should disable this test just on BrowserStack then.The text was updated successfully, but these errors were encountered: