Password: Remove PasswordStrength (#17750)

* Closes #17748

* Remove remaining occurences

* And the last one
This commit is contained in:
Tobias Skarhed
2019-06-25 13:56:35 +02:00
committed by Torkel Ödegaard
parent e83953f24e
commit 0904607eda
7 changed files with 0 additions and 94 deletions

View File

@@ -1,21 +0,0 @@
import React from 'react';
import { shallow } from 'enzyme';
import { PasswordStrength } from '../components/PasswordStrength';
describe('PasswordStrength', () => {
it('should have class bad if length below 4', () => {
const wrapper = shallow(<PasswordStrength password="asd" />);
expect(wrapper.find('.password-strength-bad')).toHaveLength(1);
});
it('should have class ok if length below 8', () => {
const wrapper = shallow(<PasswordStrength password="asdasd" />);
expect(wrapper.find('.password-strength-ok')).toHaveLength(1);
});
it('should have class good if length above 8', () => {
const wrapper = shallow(<PasswordStrength password="asdaasdda" />);
expect(wrapper.find('.password-strength-good')).toHaveLength(1);
});
});