@@ -139,7 +139,9 @@ testing.describe('Expects provided value', () => {
139
139
( ) => toBe . stringIncludes ( string , [ 'Lorem' , 'galley' , 'It was popularised in the 1960s' ] ) )
140
140
. it ( `a \`string\` type or an instance of \`String\` that includes some of the specified \`words/sentences\`` ,
141
141
( ) => toBe . stringIncludesSome ( string , [ 'Lorem1' , 'galley1' , 'It was popularised in the 1960s' ] ) )
142
- . it ( `a \`string\` between the given length.` ,
142
+ . it ( `a \`string\` of the given length.` ,
143
+ ( ) => toBe . stringOfLength ( isStringOfLength , 28 ) )
144
+ . it ( `a \`string\` between the min and max.` ,
143
145
( ) => toBe . stringOfLengthBetween ( isStringOfLength , min , max ) )
144
146
. it ( `a \`symbol\`` ,
145
147
( ) => toBe . symbol ( isSymbol ) )
@@ -188,7 +190,9 @@ testing.describe('Expects provided value', () => {
188
190
( ) => toBe . not . stringIncludes ( string , [ 'Lorem1' , 'galley1' , 'It was popularized in the 1960s1' ] ) )
189
191
. it ( `a \`string\` type or an instance of \`String\` that includes some of the specified \`words/sentences\`` ,
190
192
( ) => toBe . not . stringIncludesSome ( string , [ 'Lorem1' , 'galley1' , 'It was popularized in the 1960s1' ] ) )
191
- . it ( `a \`string\` between the given length.` ,
193
+ . it ( `a \`string\` of the given length.` ,
194
+ ( ) => toBe . not . stringOfLength ( isStringOfLength , 12 ) )
195
+ . it ( `a \`string\` between the given min and max.` ,
192
196
( ) => toBe . not . stringOfLengthBetween ( undefined , min , max ) )
193
197
. it ( `a \`symbol\`` ,
194
198
( ) => toBe . not . symbol ( undefined ) )
0 commit comments