Skip to content

Commit

Permalink
Refactor comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pythongiant committed Dec 31, 2019
1 parent 5a793b7 commit 6f2f187
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/ui-2/test/DropDownButtonStep.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe('add step dropdown', ()=>{

// Wait for .selectize-input to load
await page.waitForSelector('.selectize-input');
// click dropdown and select appropriate option. then submit
// Click dropdown and select appropriate option. then submit
await page.click('.selectize-input');
await page.click('[data-value=\'blend\']');
await page.waitForSelector('#add-step-btn');
Expand All @@ -22,7 +22,7 @@ describe('add step dropdown', ()=>{
// Get Changed Length
const LengthChanged = await page.evaluate(() => document.querySelectorAll('.step').length);

//Check If Image Of Step actually Changed
// Check If Image Of Step actually Changed
await page.waitForSelector('.step img');
const src1 = await page.evaluate(() => document.querySelectorAll('.step img')[0].src);
const src2 = await page.evaluate(() => document.querySelectorAll('.step img')[1].src);
Expand Down

0 comments on commit 6f2f187

Please sign in to comment.