This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/promise.allsettled/test/index.js
2020-11-01 22:46:04 +00:00

22 lines
670 B
JavaScript

'use strict';
var allSettled = require('..');
var test = require('tape');
var runTests = require('./tests');
test('as a function', function (t) {
t.test('bad Promise/this value', function (st) {
// below test is skipped, because for convenience, i'm explicitly turning `undefined` into `Promise` in the main export
// eslint-disable-next-line no-useless-call
// st['throws'](function () { any.call(undefined, []); }, TypeError, 'undefined is not an object');
// eslint-disable-next-line no-useless-call
st['throws'](function () { allSettled.call(null, []); }, TypeError, 'null is not an object');
st.end();
});
runTests(allSettled, t);
t.end();
});