mirror of https://github.com/facebook/jest.git
22 lines
477 B
JavaScript
22 lines
477 B
JavaScript
// Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
|
|
|
|
'use strict';
|
|
|
|
const users = {
|
|
4: {name: 'Mark'},
|
|
5: {name: 'Paul'},
|
|
};
|
|
|
|
export default function request(url) {
|
|
return new Promise((resolve, reject) => {
|
|
const userID = parseInt(url.substr('/users/'.length), 10);
|
|
process.nextTick(() =>
|
|
users[userID]
|
|
? resolve(users[userID])
|
|
: reject({
|
|
error: 'User with ' + userID + ' not found.',
|
|
}),
|
|
);
|
|
});
|
|
}
|