We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bb13f3 commit 9dfeb50Copy full SHA for 9dfeb50
test.new/static/js/test_helpers.js
@@ -240,11 +240,13 @@
240
if (CONSOLE_GROUP_SUPPORTED) {
241
console.group('Suite:', suite);
242
} else if (CONSOLE_LOG_SUPPORTED) {
243
- console.log('Suite:', suite);
+ console.log('Suite: ', suite);
244
}
245
246
- if (this.currentFixtures && this.currentFixtures.parentNode) {
247
- this.currentFixtures.remove();
+ // Calling `remove` on this node has been known to crash the tests in
+ // IE6-7.
248
+ if (this.currentFixtures) {
249
+ $('current_fixtures').update();
250
251
252
if (this.fixtures[suite]) {
0 commit comments