biofriction-wp-theme/node_modules/qs/test/utils.js

10 lines
242 B
JavaScript
Raw Normal View History

2021-10-26 14:18:09 +02: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();
});