UNPKG

@haechi-labs/henesis-cli

Version:

🚀 Command Line Interface tool to Utilize henesis

16 lines 674 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const test_1 = require("@oclif/test"); const configstore_1 = tslib_1.__importDefault(require("../common/configstore")); describe('logout', () => { test_1.test .stdout() .command('logout') .it('should be successfully logout with message', (ctx) => { test_1.expect(ctx.stdout).to.equal(`🤗 Logout Success 👍\n`); test_1.expect(configstore_1.default.get('user')).to.equal(undefined); test_1.expect(configstore_1.default.get('analytics')).to.equal(undefined); }); }); //# sourceMappingURL=logout.spec.js.map