Skip to content

Commit 1d6a995

Browse files
committed
Merge branch 'optionsStack'
2 parents b4e783a + c976ec0 commit 1d6a995

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

spec/OptionsStack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
var mockery = require('mockery');
44

5-
xdescribe('OptionsStack type', function () {
5+
describe('OptionsStack type', function () {
66
var OptionsStack;
77
var optionsStack;
88

src/OptionsStack.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@ function OptionsStack() {
1818

1919
OptionsStack.prototype.select = function (id) {
2020
// Redirige el comando al último de la pila.
21+
return this.current.select(id);
2122
};
2223

2324
OptionsStack.prototype.list = function () {
2425
// Redirige el comando al último de la pila.
26+
return this.current.list();
2527
};
2628

2729
OptionsStack.prototype.get = function (id) {

0 commit comments

Comments
 (0)