work.suroh.tk/node_modules/qs/test/utils.js

10 lines
242 B
JavaScript
Raw Normal View History

2019-12-02 12:22:45 +00:00
'use strict';
var test = require('tape');
var utils = require('../lib/utils');
test('merge()', function (t) {
t.deepEqual(utils.merge({ a: 'b' }, { a: 'c' }), { a: ['b', 'c'] }, 'merges two objects with the same key');
t.end();
});