|
|
@@ -211,11 +211,11 @@ describe( 'UI Utils', () => {
|
|
|
} );
|
|
|
|
|
|
describe( 'colorFieldValidator()', () => {
|
|
|
- it( 'should passe for an empty value', () => {
|
|
|
+ it( 'should pass for an empty value', () => {
|
|
|
expect( colorFieldValidator( '' ) ).to.be.true;
|
|
|
} );
|
|
|
|
|
|
- it( 'should passe for white spaces', () => {
|
|
|
+ it( 'should pass for white spaces', () => {
|
|
|
expect( colorFieldValidator( ' ' ) ).to.be.true;
|
|
|
} );
|
|
|
|
|
|
@@ -233,11 +233,11 @@ describe( 'UI Utils', () => {
|
|
|
} );
|
|
|
|
|
|
describe( 'lengthFieldValidator()', () => {
|
|
|
- it( 'should passe for an empty value', () => {
|
|
|
+ it( 'should pass for an empty value', () => {
|
|
|
expect( lengthFieldValidator( '' ) ).to.be.true;
|
|
|
} );
|
|
|
|
|
|
- it( 'should passe for white spaces', () => {
|
|
|
+ it( 'should pass for white spaces', () => {
|
|
|
expect( lengthFieldValidator( ' ' ) ).to.be.true;
|
|
|
} );
|
|
|
|