We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b4e783a + c976ec0 commit 1d6a995Copy full SHA for 1d6a995
2 files changed
spec/OptionsStack.js
@@ -2,7 +2,7 @@
2
3
var mockery = require('mockery');
4
5
-xdescribe('OptionsStack type', function () {
+describe('OptionsStack type', function () {
6
var OptionsStack;
7
var optionsStack;
8
src/OptionsStack.js
@@ -18,10 +18,12 @@ function OptionsStack() {
18
19
OptionsStack.prototype.select = function (id) {
20
// Redirige el comando al último de la pila.
21
+ return this.current.select(id);
22
};
23
24
OptionsStack.prototype.list = function () {
25
26
+ return this.current.list();
27
28
29
OptionsStack.prototype.get = function (id) {
0 commit comments