1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 14:01:55 +00:00
musix-oss/node_modules/object.assign/test/index.js

18 lines
424 B
JavaScript
Raw Normal View History

2020-03-03 20:30:50 +00:00
'use strict';
var assign = require('../');
var test = require('tape');
var runTests = require('./tests');
test('as a function', function (t) {
t.test('bad array/this value', function (st) {
st['throws'](function () { assign(undefined); }, TypeError, 'undefined is not an object');
st['throws'](function () { assign(null); }, TypeError, 'null is not an object');
st.end();
});
runTests(assign, t);
t.end();
});