Repository URL to install this package:
|
Version:
7.1.2 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
function validateRequestStore(store) {
if (!store.has('url')) {
throw new Error('missing url, use request.setUrl(urlForstoreEndpoint)');
}
if (!store.has('data')) {
throw new Error('missing fixture data, use request.setData(fixtureData)');
}
}
exports.validateRequestStore = validateRequestStore;
//# sourceMappingURL=validate.js.map