feat: Added isDone method test

This commit is contained in:
Giacomo Ferlaino 2020-03-13 22:21:35 +01:00
parent 2e73f1c9ee
commit ce51adb1fa

View file

@ -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);
});
});
}); });