Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hot fix - side panel conditional tests presentation #399

Merged
merged 5 commits into from
Oct 23, 2018
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ All notable changes to AET will be documented in this file.

## Unreleased
**List of changes that are finished but not yet released in any final version.**
- [PR-399](https://github.com/Cognifide/aet/pull/399) Bug fix on side panel - conditional tests ([#398](https://github.com/Cognifide/aet/issues/398))

## Version 3.0.1


- [PR-380](https://github.com/Cognifide/aet/pull/380) Exclude elements position calculated with partial screenshot offset ([#379](https://github.com/Cognifide/aet/issues/379))
- [PR-378](https://github.com/Cognifide/aet/pull/378) OSGI-configurable Chrome options.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,11 @@
<li ng-repeat="url in test.urls | filter: {name: $root.searchText} | aetUrlStatusFilter:$root.activeFilters | orderBy:'name' as filteredUrls"
ng-class="[url.getStatus()]" class="url-name">
<div aet-truncate-urls class="text-left nowrap">
<div ng-if="test.getStatus() != 'rebased' && test.getStatus() != 'conditionallyPassed'" class="failed">
<i class="fas {{theme.statusClasses[test.getStatus()]}}"></i>
<div ng-if="url.getStatus() != 'rebased' && url.getStatus() != 'conditionallyPassed'" class="failed">
<i class="fas {{theme.statusClasses[url.getStatus()]}}"></i>
</div>
<div ng-if="test.getStatus() == 'rebased' || test.getStatus() == 'conditionallyPassed'">
<i class="fas {{theme.statusClasses[test.getStatus()]}}"></i>
<div ng-if="url.getStatus() == 'rebased' || url.getStatus() == 'conditionallyPassed'">
<i class="fas {{theme.statusClasses[url.getStatus()]}}"></i>
</div>
<a class="test-url" ui-sref-active="is-active"
ui-sref="url({'suite':$root.params.project,'test':test.name, 'url':url.name})">
Expand Down