Skip to content

Commit

Permalink
modify test
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamsinghbundela committed Oct 30, 2023
1 parent 8a11485 commit 328d607
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/integration/components/tasks-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ module('Integration | Component | tasks', function (hooks) {

assert.dom('[data-test-task-spinner]').doesNotExist();

await fillIn('[data-test-task-status-select]', TASK_KEYS.COMPLETED);
await fillIn('[data-test-task-status-select]', TASK_KEYS.DONE);

assert.dom('[data-test-task-spinner]').exists({ count: 1 });

Expand Down
2 changes: 1 addition & 1 deletion tests/integration/components/tasks/holder-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ module('Integration | Component | Tasks Holder', function (hooks) {
.dom('[data-test-task-status-select]')
.hasValue(TASK_KEYS.IN_PROGRESS);

await select('[data-test-task-status-select]', TASK_KEYS.COMPLETED);
await select('[data-test-task-status-select]', TASK_KEYS.DONE);

assert
.dom('[data-test-task-status-select]')
Expand Down

0 comments on commit 328d607

Please sign in to comment.