Skip to content

Commit 37ad863

Browse files
committed
Backfill test for arrayMerge
1 parent f1c518d commit 37ad863

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test/raven.test.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,14 @@ describe('globals', function() {
109109
});
110110
});
111111

112+
describe('arrayMerge', function() {
113+
it('should work as advertised', function() {
114+
assert.deepEqual(arrayMerge({}, {}), {});
115+
assert.deepEqual(arrayMerge({a:1}, {b:2}), {a:1, b:2});
116+
assert.deepEqual(arrayMerge({a:1}), {a:1});
117+
});
118+
});
119+
112120
describe('isSetup', function() {
113121
it('should return false with no JSON support', function() {
114122
globalServer = 'http://localhost/';

0 commit comments

Comments
 (0)