Skip to content

Commit

Permalink
modidy test after changes in code
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamsinghbundela committed Jul 25, 2023
1 parent 5874c7e commit b88bfdc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/unit/controllers/new-signup-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,15 @@ module('Unit | Controller | new-signup', function (hooks) {
let productmanager = 'productmanager';

controller.send('handleCheckboxInputChange', 'developer', true);
assert.equal(controller.roles[developer], true);
assert.equal(controller.signupDetails.roles[developer], true);

controller.send('handleCheckboxInputChange', 'designer', true);
assert.equal(controller.roles[designer], true);
assert.equal(controller.signupDetails.roles[designer], true);

controller.send('handleCheckboxInputChange', 'mavens', true);
assert.equal(controller.roles[mavens], true);
assert.equal(controller.signupDetails.roles[mavens], true);

controller.send('handleCheckboxInputChange', 'productmanager', true);
assert.equal(controller.roles[productmanager], true);
assert.equal(controller.signupDetails.roles[productmanager], true);
});
});

0 comments on commit b88bfdc

Please sign in to comment.