A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ciphermask/app/scripts/lib/nodeify.test.js

42 lines
1011 B

import nodeify from './nodeify';
8 years ago
describe('nodeify', () => {
const obj = {
8 years ago
foo: 'bar',
promiseFunc(a) {
const solution = this.foo + a;
return Promise.resolve(solution);
8 years ago
},
};
8 years ago
it('should retain original context', () => {
const nodified = nodeify(obj.promiseFunc, obj);
nodified('baz', (_, res) => {
expect(res).toStrictEqual('barbaz');
});
});
it('no callback - should allow the last argument to not be a function', async () => {
const nodified = nodeify(obj.promiseFunc, obj);
await expect(() => {
nodified('baz');
}).not.toThrow();
});
it('sync functions - returns value', async () => {
const nodified = nodeify(() => 42);
nodified((_, result) => {
expect(42).toStrictEqual(result);
});
});
it('sync functions - handles errors', () => {
const nodified = nodeify(() => {
throw new Error('boom!');
});
nodified((err, _) => {
expect(err.message).toStrictEqual('boom!');
});
});
});