feat: Added isDone method test
This commit is contained in:
parent
2e73f1c9ee
commit
ce51adb1fa
1 changed files with 7 additions and 0 deletions
|
|
@ -168,4 +168,11 @@ describe('Class: Ng2FittextDirective', () => {
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('Method: isDone', () => {
|
||||||
|
it('Should return the done property value', () => {
|
||||||
|
const defaultDoneValue = false;
|
||||||
|
expect(ng2FittextDirective.isDone()).toBe(defaultDoneValue);
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue