You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Often multiple tests are chained together using the it keyword. When doing so, usually only the first spec contains a navigateTo(url) call. When only starting a single test, which isn't the first one, the test fails, because navigateTo is not called.
We should provide an easy way to configure a URL which is then used for all tests. Depending on the situation, the test suite should automatically call navigateTo befor the test, no matter wheter all or only a single test is executed.
The text was updated successfully, but these errors were encountered:
the path can now be defined as part of the spec. The IntegrationSpec will then execute "go to" before each test, using the stored url (defined as $host$projectRoot$path). If some tests need to change the path, they might do so by calling the afterChangingPathTo method.
Often multiple tests are chained together using the it keyword. When doing so, usually only the first spec contains a navigateTo(url) call. When only starting a single test, which isn't the first one, the test fails, because navigateTo is not called.
We should provide an easy way to configure a URL which is then used for all tests. Depending on the situation, the test suite should automatically call navigateTo befor the test, no matter wheter all or only a single test is executed.
The text was updated successfully, but these errors were encountered: