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 6201e42 commit f77cac4Copy full SHA for f77cac4
docs/example/Array.js
@@ -13,7 +13,7 @@ describe('Array', function(){
13
var arr = [];
14
var n = arr.push('foo');
15
expect(n).to.equal(1);
16
- var n = arr.push('bar');
+ n = arr.push('bar');
17
expect(n).to.equal(2);
18
})
19
@@ -39,7 +39,7 @@ describe('Array', function(){
39
40
var n = arr.unshift('foo');
41
42
- var n = arr.unshift('bar');
+ n = arr.unshift('bar');
43
44
45
@@ -70,4 +70,5 @@ describe('Array', function(){
70
expect(arr).to.have.length(1);
71
72
73
-})
+})
74
+
0 commit comments