UNPKG

npm-arduino-avr-gcc

Version:

Installs Arduino's avr-gcc toolchain via npm.

10 lines (7 loc) 242 B
'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(); });