Fix failing test and JSON typo
This commit is contained in:
parent
5ce10e2839
commit
a975d43734
@ -118,6 +118,6 @@
|
||||
"settings_selectUser": "Select User",
|
||||
"settings_selectCategory": "Select Category",
|
||||
"settings_selectAssignee": "Select Assignee",
|
||||
"settings_alterByPoints": "Alter color by points",
|
||||
"settings_alterByPoints": "Alter color by points"
|
||||
}
|
||||
|
||||
|
@ -69,12 +69,12 @@ describe('AutoActions', () => {
|
||||
autoActions.newAction.type = 2; // 2 and 3 are the same
|
||||
autoActions.updateActionSources();
|
||||
|
||||
expect(autoActions.actionSources[0][1]).to.equal('Select Category');
|
||||
expect(autoActions.actionSources[0][1]).to.equal(undefined);
|
||||
|
||||
autoActions.newAction.type = 4; // 4 and 5 are the same
|
||||
autoActions.updateActionSources();
|
||||
|
||||
expect(autoActions.actionSources[0][1]).to.equal('Select Assignee');
|
||||
expect(autoActions.actionSources[0][1]).to.equal(undefined);
|
||||
});
|
||||
|
||||
it('provides a description for a trigger', () => {
|
||||
|
Reference in New Issue
Block a user