This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.

21 lines
594 B
JavaScript
Raw Normal View History

2021-04-02 02:24:13 +03:00
// Verify that custom promises work as advertised.
var PrPromise = require('prfun');
var assert = require('../assert');
var fs = require('../fs');
describe('Verify that custom promises can be used', function() {
var oldPromise;
before(function() {
oldPromise = require('../_promise')();
require('../_promise')(PrPromise);
});
after(function() {
require('../_promise')(oldPromise);
});
it('exists should use the custom promise type', function() {
var p = fs.exists('abc');
assert.equal(p instanceof PrPromise, true);
});
});