@@ -7,17 +7,22 @@ describe('Crypto', () => {
77 expect ( crypto . ciphertext ) . toEqual ( '' )
88 } )
99
10- it ( 'Lowercase' , ( ) => {
10+ xit ( 'normalization results in empty plaintext' , ( ) => {
11+ const crypto = new Crypto ( '... --- ...' )
12+ expect ( crypto . ciphertext ) . toEqual ( '' )
13+ } )
14+
15+ xit ( 'Lowercase' , ( ) => {
1116 const crypto = new Crypto ( 'A' )
1217 expect ( crypto . ciphertext ) . toEqual ( 'a' )
1318 } )
1419
15- it ( 'Remove spaces' , ( ) => {
20+ xit ( 'Remove spaces' , ( ) => {
1621 const crypto = new Crypto ( ' b ' )
1722 expect ( crypto . ciphertext ) . toEqual ( 'b' )
1823 } )
1924
20- it ( 'Remove punctuation' , ( ) => {
25+ xit ( 'Remove punctuation' , ( ) => {
2126 const crypto = new Crypto ( '@1,%!' )
2227 expect ( crypto . ciphertext ) . toEqual ( '1' )
2328 } )
@@ -32,7 +37,7 @@ describe('Crypto', () => {
3237 expect ( crypto . ciphertext ) . toEqual ( 'clu hlt io ' )
3338 } )
3439
35- it . skip ( '54 character plaintext results in 7 chunks, the last two with trailing spaces' , ( ) => {
40+ it . skip ( '54 character plaintext results in 8 chunks, the last two with trailing spaces' , ( ) => {
3641 const crypto = new Crypto (
3742 'If man was meant to stay on the ground, god would have given us roots.'
3843 )
0 commit comments