Skip to content

Commit

Permalink
add comments for todo on some lines
Browse files Browse the repository at this point in the history
  • Loading branch information
adrian-bobev committed Feb 26, 2019
1 parent 3c349b9 commit ad4c9b2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/main/test/specs/TabContainer.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ describe("TabContainer general interaction", () => {
assert.ok(arrowRight.isDisplayed(), "'Right Arrow' should be initially shown");

arrowRight.click();
browser.pause(300);
browser.pause(300); // TODO: wait for animation finish. Remove when solved on framework level

assert.ok(arrowLeft.isDisplayed(), "'Left Arrow' should be shown after 'Right Arrow' click");
assert.ok(!arrowRight.isDisplayed(), "'Right Arrow' should be hidden after 'Right Arrow' click");

arrowLeft.click();
browser.pause(300);
browser.pause(300); // TODO: wait for animation finish. Remove when solved on framework level

assert.ok(!arrowLeft.isDisplayed(), "'Left Arrow' should be hidden after 'Left Arrow' click");
assert.ok(arrowRight.isDisplayed(), "'Right Arrow' should be shown after 'Left Arrow' click");
Expand All @@ -52,13 +52,13 @@ describe("TabContainer general interaction", () => {
assert.ok(arrowRight.isDisplayed(), "'Right Arrow' should be initially shown");

arrowRight.click();
browser.pause(300);
browser.pause(300); // TODO: wait for animation finish. Remove when solved on framework level

assert.ok(arrowLeft.isDisplayed(), "'Left Arrow' should be shown after 'Right Arrow' click");
assert.ok(!arrowRight.isDisplayed(), "'Right Arrow' should be hidden after 'Right Arrow' click");

arrowLeft.click();
browser.pause(300);
browser.pause(300); // TODO: wait for animation finish. Remove when solved on framework level

assert.ok(!arrowLeft.isDisplayed(), "'Left Arrow' should be hidden after 'Left Arrow' click");
assert.ok(arrowRight.isDisplayed(), "'Right Arrow' should be shown after 'Left Arrow' click");
Expand Down

0 comments on commit ad4c9b2

Please sign in to comment.