From 70971c6720a6ed9211f4c42ea7cd46343be14fc9 Mon Sep 17 00:00:00 2001 From: Chandra Reddy <77037622+chandrareddy7@users.noreply.github.com> Date: Sun, 8 Oct 2023 12:15:37 +0530 Subject: [PATCH] Updating test name --- tests/integration/components/tasks/holder-test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/components/tasks/holder-test.js b/tests/integration/components/tasks/holder-test.js index 5fa7b338..30aaa86e 100644 --- a/tests/integration/components/tasks/holder-test.js +++ b/tests/integration/components/tasks/holder-test.js @@ -248,7 +248,7 @@ module('Integration | Component | Tasks Holder', function (hooks) { assert.equal(onTaskUpdateCalled, 1, 'onTaskUpdate should be called once'); }); - test('Check if UNASSIGNED and DONE is not in task status options when dev is false', async function (assert) { + test('Check if old task status options are displayed when dev is false', async function (assert) { this.set('task', tasksData[3]); this.set('mock', () => {}); this.set('isLoading', false); @@ -281,7 +281,7 @@ module('Integration | Component | Tasks Holder', function (hooks) { } }); - test('Check if UNASSIGNED and DONE is in task status options when dev is true', async function (assert) { + test('Check if new task status options are displayed when dev is true', async function (assert) { this.set('task', tasksData[3]); this.set('mock', () => {}); this.set('isLoading', false);