8 lines
233 B
TypeScript
8 lines
233 B
TypeScript
import { PasswordErrorStateMatcher } from './password-error-state-matcher';
|
|
|
|
describe('PasswordErrorStateMatcher', () => {
|
|
it('should create an instance', () => {
|
|
expect(new PasswordErrorStateMatcher()).toBeTruthy();
|
|
});
|
|
});
|