Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit d939c20

Browse files
committed
Merge branch 'suites' of github.com:cnishina/protractor into suites
2 parents e074aa8 + 9febd3c commit d939c20

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ env:
1313
- LOGS_DIR=/tmp/protractor-build/logs
1414
- BROWSER_PROVIDER_READY_FILE=/tmp/sauce-connect-ready
1515
- CXX=g++-4.8
16-
# TODO(selenium4): revert comments
1716
matrix:
1817
- JOB=full
1918
- JOB=smoke

spec/basic/elements_spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ describe('ElementArrayFinder', () => {
544544
{ first: 'F', second: 'Friday' }];
545545

546546
const result = await element.all(by.repeater('allinfo in days'))
547-
.map((el) => {
547+
.map(async(el) => {
548548
return {
549549
first: await el.element(by.binding('allinfo.initial')).getText(),
550550
second: await el.element(by.binding('allinfo.name')).getText()

0 commit comments

Comments
 (0)