firebase-tools
Version:
Command-Line Interface for Firebase
20 lines (19 loc) • 1.11 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.command = void 0;
const command_1 = require("../command");
const commandUtils = require("../emulator/commandUtils");
const commandUtils_1 = require("../emulator/commandUtils");
exports.command = new command_1.Command("emulators:exec <script>")
.before(commandUtils.setExportOnExitOptions)
.before(commandUtils.beforeEmulatorCommand)
.description("start the local Firebase emulators, run a test script, then shut down the emulators")
.option(commandUtils.FLAG_ONLY, commandUtils.DESC_ONLY)
.option(commandUtils.FLAG_INSPECT_FUNCTIONS, commandUtils.DESC_INSPECT_FUNCTIONS)
.option(commandUtils.FLAG_IMPORT, commandUtils.DESC_IMPORT)
.option(commandUtils.FLAG_EXPORT_ON_EXIT, commandUtils.DESC_EXPORT_ON_EXIT)
.option(commandUtils.FLAG_VERBOSITY, commandUtils.DESC_VERBOSITY)
.option(commandUtils.FLAG_UI, commandUtils.DESC_UI)
.action((script, options) => {
return Promise.race([(0, commandUtils_1.shutdownWhenKilled)(options), (0, commandUtils_1.emulatorExec)(script, options)]);
});
;