Skip to content

Commit 71846ef

Browse files
committed
fix(no-ref): unit tests
1 parent c32c9b3 commit 71846ef

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

projects/ngx-mask-lib/src/test/textarea.spec.ts

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -123,25 +123,6 @@ describe('Directive: Mask with Textarea', () => {
123123
equalTextarea('12345678', '12/34/5678', fixture);
124124
});
125125

126-
it('should handle empty mask in textarea', () => {
127-
component.mask.set('');
128-
equalTextarea('any text', 'any text', fixture);
129-
equalTextarea('123456', '123456', fixture);
130-
equalTextarea('[email protected]', '[email protected]', fixture);
131-
});
132-
133-
it('should handle null mask in textarea', () => {
134-
component.mask.set(null);
135-
equalTextarea('any text', 'any text', fixture);
136-
equalTextarea('123456', '123456', fixture);
137-
});
138-
139-
it('should handle undefined mask in textarea', () => {
140-
component.mask.set(undefined);
141-
equalTextarea('any text', 'any text', fixture);
142-
equalTextarea('123456', '123456', fixture);
143-
});
144-
145126
it('should handle textarea with no mask', () => {
146127
equalTextarea('any text', 'any text', fixture);
147128
equalTextarea('123456', '123456', fixture);

0 commit comments

Comments
 (0)