Commit b4eb8ee4 b4eb8ee4136ff7ffb9c636b3701029941d03d3cb by Julien Muetton

Fix comments in casper module about skip methods

As seen in premvious commit skip does skip steps, no tests.
1 parent cf8c957e
...@@ -1614,7 +1614,7 @@ Casper.prototype.thenOpen = function thenOpen(location, settings, then) { ...@@ -1614,7 +1614,7 @@ Casper.prototype.thenOpen = function thenOpen(location, settings, then) {
1614 }; 1614 };
1615 1615
1616 /** 1616 /**
1617 * Skip `nb` tests. 1617 * Skip `nb` steps.
1618 * 1618 *
1619 * @param Integer nb number of tests to skip 1619 * @param Integer nb number of tests to skip
1620 * @param String message message to display 1620 * @param String message message to display
...@@ -1626,7 +1626,7 @@ Casper.prototype.thenSkip = function (nb, message) { ...@@ -1626,7 +1626,7 @@ Casper.prototype.thenSkip = function (nb, message) {
1626 }; 1626 };
1627 1627
1628 /** 1628 /**
1629 * Skip `nb` tests if condition is true. 1629 * Skip `nb` steps if condition is true.
1630 * 1630 *
1631 * @param Mixed condition number of tests to skip 1631 * @param Mixed condition number of tests to skip
1632 * @param Integer nb number of tests to skip 1632 * @param Integer nb number of tests to skip
...@@ -1644,7 +1644,7 @@ Casper.prototype.thenSkipIf = function (condition, nb, message) { ...@@ -1644,7 +1644,7 @@ Casper.prototype.thenSkipIf = function (condition, nb, message) {
1644 }; 1644 };
1645 1645
1646 /** 1646 /**
1647 * Skip `nb` tests if condition is true. 1647 * Skip `nb` steps if condition is true.
1648 * 1648 *
1649 * @param Mixed condition number of tests to skip 1649 * @param Mixed condition number of tests to skip
1650 * @param Integer nb number of tests to skip 1650 * @param Integer nb number of tests to skip
......