The docs currently suggest setting up a mapping like this:
var mapping = {
'/people': {
status: 201,
body: { email: 'foo@example.com' }
}
};
But the test server looks up mapping entries using the HTTP method plus the url path:
var mapped = mapping[request.method + " " + request.url];
The require path for the test server also appears to be wrong.