Skip to content

Commit

Permalink
chore: Updated test assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
ijlee2 committed Jun 12, 2024
1 parent ebe339d commit d537cd8
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions docs-app/tests/acceptance/album/visual-regression-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,13 @@ module('Acceptance | album', function (hooks) {

test('@w3 @h1 Visual snapshot', async function (assert) {
assert
.dom('[data-test-table="Tracks"]')
.exists('We see the album tracks in a table.');
.dom('[data-test-list="Tracks"]')
.exists('We see the album tracks in a list.')
.hasAttribute(
'data-css-grid',
'4 x 3',
'We see 11 tracks in a 4 x 3 grid.',
);

assert
.dom('[data-test-table="Tracks"] [data-test-row]')
Expand Down

0 comments on commit d537cd8

Please sign in to comment.