Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
billybonks committed Jun 18, 2016
1 parent ca941e2 commit a922500
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/acceptance/invoices-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ test('delete invoice', function(assert) {
waitToAppear('.modal-dialog');
});
andThen(() => {
assert.equal(find('.alert').text().trim(), 'Are you sure you wish to delete inv00001?', 'Invoice deletion confirm displays');
assert.equal(find('.alert').text().trim(), 'Are you sure you wish to delete <strong>inv00001</strong>?', 'Invoice deletion confirm displays');
});
click('button:contains(Delete):last');
waitToDisappear('.invoice-number:contains(inv00001)');
Expand Down
2 changes: 1 addition & 1 deletion tests/acceptance/pricing-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ test('delete price', function(assert) {
});
waitToAppear('.modal-dialog');
andThen(() => {
assert.equal(find('.alert').text().trim(), 'Are you sure you wish to delete Blood test?', 'Pricing item is displayed for deletion');
assert.equal(find('.alert').text().trim(), 'Are you sure you wish to delete <strong>Blood test</strong>?', 'Pricing item is displayed for deletion');
});
click('button:contains(Delete):last');
waitToDisappear('.price-name:contains(Blood test)');
Expand Down

0 comments on commit a922500

Please sign in to comment.