We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c32c9b3 commit 71846efCopy full SHA for 71846ef
projects/ngx-mask-lib/src/test/textarea.spec.ts
@@ -123,25 +123,6 @@ describe('Directive: Mask with Textarea', () => {
123
equalTextarea('12345678', '12/34/5678', fixture);
124
});
125
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
136
137
138
139
- it('should handle undefined mask in textarea', () => {
140
- component.mask.set(undefined);
141
142
143
144
145
it('should handle textarea with no mask', () => {
146
equalTextarea('any text', 'any text', fixture);
147
equalTextarea('123456', '123456', fixture);
0 commit comments