UNPKG

@sprucelabs/spruce-cli

Version:

Command line interface for building Spruce skills.

102 lines 4.16 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __importStar = (this && this.__importStar) || (function () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const test_utils_1 = __importStar(require("@sprucelabs/test-utils")); const TerminalInterface_1 = __importDefault(require("../../interfaces/TerminalInterface")); class TerminalInterfaceTest extends test_utils_1.default { static wasOraHit; static ui; static async beforeEach() { await super.beforeEach(); process.env.IS_TESTING_SELF = 'true'; this.wasOraHit = false; //@ts-ignore TerminalInterface_1.default.ora = () => { this.wasOraHit = true; return { start: () => { }, stop: () => { }, }; }; this.ui = new TerminalInterface_1.default(this.cwd); } static async afterEach() { await super.afterEach(); await this.wait(100); } static async dontShowProgressIfPrompting() { this.prompt(); await this.startLoading(); test_utils_1.assert.isFalse(this.wasOraHit); } static async startsLoadingAsExpectedIfNotPrompting() { await this.startLoading(); test_utils_1.assert.isTrue(this.wasOraHit); } static async askingToPromptThrowsIfInCi() { delete process.env.IS_TESTING_SELF; process.env.CIRCLECI = 'true'; const err = await test_utils_1.assert.doesThrowAsync(() => this.ui.prompt({ type: 'text' })); test_utils_1.errorAssert.assertError(err, 'CANNOT_PROMPT_IN_CI'); } static async startLoading() { await this.ui.startLoading(); } static prompt() { void this.ui.prompt({ type: 'text', }); } } exports.default = TerminalInterfaceTest; __decorate([ (0, test_utils_1.test)() ], TerminalInterfaceTest, "dontShowProgressIfPrompting", null); __decorate([ (0, test_utils_1.test)() ], TerminalInterfaceTest, "startsLoadingAsExpectedIfNotPrompting", null); __decorate([ (0, test_utils_1.test)() ], TerminalInterfaceTest, "askingToPromptThrowsIfInCi", null); //# sourceMappingURL=TerminalInterface.test.js.map