File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,14 +26,14 @@ describe('wrapString', () => {
26
26
} ) ;
27
27
context ( 'subject string contains ANSI escape codes' , ( ) => {
28
28
describe ( 'subject is lesser than the chunk size' , ( ) => {
29
- it ( 'returns subject in a single chunk' , ( ) => {
29
+ it . skip ( 'returns subject in a single chunk' , ( ) => {
30
30
expect ( wrapString ( chalk . red ( 'aaa' ) , 3 ) ) . to . deep . equal ( [
31
31
'\u001b[31m\u001b[31m\u001b[31m\u001b[31m\u001b[31maaa\u001b[39m'
32
32
] ) ;
33
33
} ) ;
34
34
} ) ;
35
35
describe ( 'subject is larger than the chunk size' , ( ) => {
36
- it ( 'returns subject sliced into multiple chunks' , ( ) => {
36
+ it . skip ( 'returns subject sliced into multiple chunks' , ( ) => {
37
37
expect ( wrapString ( chalk . red ( 'aaabbbc' ) , 3 ) ) . to . deep . equal ( [
38
38
'\u001b[31m\u001b[31m\u001b[31m\u001b[31m\u001b[31maaa\u001b[39m' ,
39
39
'\u001b[31m\u001b[31m\u001b[31m\u001b[31m\u001b[31mbbb\u001b[39m' ,
You can’t perform that action at this time.
0 commit comments