[ADF-3591] spellcheck support for code (#3827)

* setup spellcheck
This commit is contained in:
Denys Vuika
2018-10-23 15:05:38 +01:00
committed by Eugenio Romano
parent 53d96679ea
commit e39a2b149b
262 changed files with 1561 additions and 1005 deletions

View File

@@ -214,7 +214,7 @@ describe('TaskHeaderComponent', () => {
});
}));
it('should display the claime button if the task is claimable by candidates members', async(() => {
it('should display the claim button if the task is claimable by candidates members', async(() => {
component.taskDetails = new TaskDetailsModel(claimableTaskDetailsMock);
component.refreshData();
fixture.detectChanges();
@@ -240,7 +240,7 @@ describe('TaskHeaderComponent', () => {
});
}));
it('should call the service\'s unclaim method on unclaiming', async(() => {
it('should call the service unclaim method on un-claiming', async(() => {
spyOn(service, 'unclaimTask').and.returnValue(of(true));
component.taskDetails = new TaskDetailsModel(claimedTaskDetailsMock);
component.refreshData();
@@ -254,7 +254,7 @@ describe('TaskHeaderComponent', () => {
});
}));
it('should trigger the unclaim event on successful unclaiming', async(() => {
it('should trigger the unclaim event on successful un-claiming', async(() => {
let unclaimed: boolean = false;
spyOn(service, 'unclaimTask').and.returnValue(of(true));
component.taskDetails = new TaskDetailsModel(claimedTaskDetailsMock);