deno.land / x / yargs@v17.6.0-deno / test / is-promise.cjs

is-promise.cjs
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* global describe, it */const {expect} = require('chai');const {isPromise} = require('../build/index.cjs');
describe('isPromise', () => { it('returns `false` on non promise value', () => { expect(isPromise('hello there.')).to.be.equal(false); });
it('returns `true` on es6 promise', () => { const esPromise = new Promise(() => {}); expect(isPromise(esPromise)).to.be.equal(true); });
it('returns `true` on some other thenable', () => { const thenable = {then: () => {}}; expect(isPromise(thenable)).to.be.equal(true); });
it('returns `false` if some falsy value is passed', () => { expect(isPromise(null)).to.be.equal(false); });
it('returns `false` if passed object has no `then` property', () => { expect(isPromise({})).to.be.equal(false); });
it('returns `false` if `then` is not a function', () => { const obj = {then: 4711}; expect(isPromise(obj)).to.be.equal(false); });});
yargs

Version Info

Tagged at
a year ago