1
0
Fork 0
mirror of https://github.com/actions/setup-python.git synced 2024-11-23 09:17:16 +00:00
setup-python/node_modules/pn/test/custom.js

21 lines
594 B
JavaScript
Raw Normal View History

2019-06-27 01:12:00 +00: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);
});
});