@wordpress/e2e-test-utils
Version:
End-To-End (E2E) test utils for WordPress.
15 lines (14 loc) • 490 B
JavaScript
/**
* Internal dependencies
*/
import { getJSONResponse } from '../shared/get-json-response';
/**
* Respond to a request with a JSON response.
*
* @param {string} mockResponse The mock object to wrap in a JSON response.
* @return {Promise} Promise that responds to a request with the mock JSON response.
*/
export function createJSONResponse(mockResponse) {
return async request => request.respond(getJSONResponse(mockResponse));
}
//# sourceMappingURL=create-json-response.js.map