1
1
diff --git a/qunit/qunit.js b/qunit/qunit.js
2
- index 5e48b79303e8bfe33ba60a9407c2d67879a07841..649cd30f59991f1870570d6ec831ed602862a772 100644
2
+ index 460e0e58227234eef7ee72876f13b7fec65198c0..3c3a786614c412e1e91b8b8d31b78cd9f3bd2b2c 100644
3
3
--- a/qunit/qunit.js
4
4
+++ b/qunit/qunit.js
5
5
@@ -8,6 +8,10 @@
@@ -8,12 +8,12 @@ index 5e48b79303e8bfe33ba60a9407c2d67879a07841..649cd30f59991f1870570d6ec831ed60
8
8
'use strict';
9
9
+ function getKeys(obj) {
10
10
+ if (!obj) { return []; }
11
- + return Object.keys(obj).concat(getKeys(Object.getPrototypeOf(obj)));
11
+ + return Object.keys(obj).concat(getKeys(Object.getPrototypeOf(obj)));
12
12
+ }
13
13
14
- function _typeof(obj ) {
15
- "@babel/helpers - typeof" ;
16
- @@ -1003 ,10 +1007 ,7 @@
14
+ function _arrayLikeToArray(r, a ) {
15
+ (null == a || a > r.length) && (a = r.length) ;
16
+ @@ -1049 ,10 +1053 ,7 @@
17
17
return '[object Object]';
18
18
}
19
19
dump.up();
@@ -25,7 +25,7 @@ index 5e48b79303e8bfe33ba60a9407c2d67879a07841..649cd30f59991f1870570d6ec831ed60
25
25
26
26
// Some properties are not always enumerable on Error objects.
27
27
var nonEnumerableProperties = ['message', 'name'];
28
- @@ -5647 ,6 +5648 ,9 @@
28
+ @@ -7041 ,6 +7042 ,9 @@
29
29
appendToolbar(beginDetails);
30
30
}
31
31
function appendTest(name, testId, moduleName) {
@@ -35,7 +35,7 @@ index 5e48b79303e8bfe33ba60a9407c2d67879a07841..649cd30f59991f1870570d6ec831ed60
35
35
var tests = id('qunit-tests');
36
36
if (!tests) {
37
37
return;
38
- @@ -5831 ,6 +5835 ,13 @@
38
+ @@ -7229 ,6 +7233 ,13 @@
39
39
assertList.appendChild(assertLi);
40
40
});
41
41
QUnit.testDone(function (details) {
@@ -49,7 +49,7 @@ index 5e48b79303e8bfe33ba60a9407c2d67879a07841..649cd30f59991f1870570d6ec831ed60
49
49
var tests = id('qunit-tests');
50
50
var testItem = id('qunit-test-output-' + details.testId);
51
51
if (!tests || !testItem) {
52
- @@ -5849 ,13 +5860 ,10 @@
52
+ @@ -7247 ,13 +7258 ,10 @@
53
53
var good = details.passed;
54
54
var bad = details.failed;
55
55
@@ -63,11 +63,11 @@ index 5e48b79303e8bfe33ba60a9407c2d67879a07841..649cd30f59991f1870570d6ec831ed60
63
63
if (config.collapse) {
64
64
if (!collapseNext) {
65
65
// Skip collapsing the first failing test
66
- @@ -5871 ,7 +5879 ,6 @@
66
+ @@ -7269 ,7 +7277 ,6 @@
67
67
var testTitle = testItem.firstChild;
68
68
var testCounts = bad ? "<b class='failed'>" + bad + '</b>, ' + "<b class='passed'>" + good + '</b>, ' : '';
69
69
testTitle.innerHTML += " <b class='counts'>(" + testCounts + details.assertions.length + ')</b>';
70
70
- stats.completed++;
71
71
if (details.skipped) {
72
72
testItem.className = 'skipped';
73
- var skipped = document.createElement('em');
73
+ var skipped = document.createElement('em');
0 commit comments