Skip to content

Commit

Permalink
fix last few failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andaley committed Feb 11, 2020
1 parent 160a103 commit 699d402
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion ui/app/templates/partials/transit-form-show.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
mode="show"
replace=true
queryParams=(query-params tab='actions')
data-test-transit-link="actions"
data-test-transit-key-actions-link=true
}}
Key Actions
Expand Down
4 changes: 2 additions & 2 deletions ui/tests/acceptance/transit-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,12 +270,12 @@ module('Acceptance | transit', function(hooks) {
);
if (key.exportable) {
assert.ok(
find('[data-test-transit-action-link="export-key"]'),
find('[data-test-transit-action-link="export"]'),
`${name}: exportable key has a link to export action`
);
} else {
assert
.dom('[data-test-transit-action-link="export-key"]')
.dom('[data-test-transit-action-link="export"]')
.doesNotExist(`${name}: non-exportable key does not link to export action`);
}
if (key.convergent && key.supportsEncryption) {
Expand Down

0 comments on commit 699d402

Please sign in to comment.