Skip to content

Commit

Permalink
chore: fixing unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wakaleo committed Jun 23, 2018
1 parent b4afb54 commit 37dc628
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@

# Serenity Core change log
## Unreleased
### No issue
* [b4afb54ef081b48](https://github.com/serenity-bdd/serenity-core/commit/b4afb54ef081b48) fix: Performance improvements for Screenplay matchers. Previously, matchers such as isNotVisible() and isNotPresent() would timeout before passing the test. Now they will succeed immediately if the element is missing.
* [316e980fa719878](https://github.com/serenity-bdd/serenity-core/commit/316e980fa719878) chore: Code cleanup
* [2d808b7732c1db2](https://github.com/serenity-bdd/serenity-core/commit/2d808b7732c1db2) fix: updated groovy dependencies to avoid a class dependency issue that happens sometimes with serenity-rest-assured
* [b0aa33ed9f31ea3](https://github.com/serenity-bdd/serenity-core/commit/b0aa33ed9f31ea3) chore: tidying up and documentation
* [cb36459bd7e3917](https://github.com/serenity-bdd/serenity-core/commit/cb36459bd7e3917) Updated CircleCI files
* [06ef2be87813c21](https://github.com/serenity-bdd/serenity-core/commit/06ef2be87813c21) Updated CircleCI files
* [d5f537eb219293a](https://github.com/serenity-bdd/serenity-core/commit/d5f537eb219293a) chore: refactoring
* [3294d57bc204efd](https://github.com/serenity-bdd/serenity-core/commit/3294d57bc204efd) fix: corrected wording for the seeIf task.
* [717c4e3a0a2d6b9](https://github.com/serenity-bdd/serenity-core/commit/717c4e3a0a2d6b9) fix: Questions with the @Subject annotation where not always reported correctly in the reports
* [6a27cd97b1c9834](https://github.com/serenity-bdd/serenity-core/commit/6a27cd97b1c9834) Updated changelog
## v1.9.20
### No issue
* [daa522123a98ba8](https://github.com/serenity-bdd/serenity-core/commit/daa522123a98ba8) Added the experimental question/task 'seeIf'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class WhenManipulatingWebElements extends Specification {
WebElementFacade webElementFacade = WebElementFacadeImpl.wrapWebElement(driver, webElement, 100, 100);
WebElementFacade webElementFacadeWithDifferentTimeout = webElementFacade.withTimeoutOf(2, TimeUnit.SECONDS);
then:
webElementFacadeWithDifferentTimeout.implicitTimeoutInMilliseconds == 100L
webElementFacadeWithDifferentTimeout.implicitTimeoutInMilliseconds == 2000L
webElementFacadeWithDifferentTimeout.waitForTimeoutInMilliseconds == 2000L
}

Expand Down

0 comments on commit 37dc628

Please sign in to comment.