UNPKG

cypress-mongodb

Version:
15 lines 437 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.validate = validate; function validate(args) { if (!args.uri) { throw new Error('Missing mongodb.uri environment variable'); } if (!args.collection) { throw new Error('Collection not specified'); } if (!args.database) { throw new Error('Database not specified'); } } //# sourceMappingURL=validator.js.map