File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -4,22 +4,22 @@ describe('convertToCelsius', () => {
44 test ( 'works' , ( ) => {
55 expect ( convertToCelsius ( 32 ) ) . toEqual ( 0 ) ;
66 } ) ;
7- test ( 'rounds to 1 decimal' , ( ) => {
7+ test . skip ( 'rounds to 1 decimal' , ( ) => {
88 expect ( convertToCelsius ( 100 ) ) . toEqual ( 37.8 ) ;
99 } ) ;
10- test ( 'works with negatives' , ( ) => {
10+ test . skip ( 'works with negatives' , ( ) => {
1111 expect ( convertToCelsius ( - 100 ) ) . toEqual ( - 73.3 ) ;
1212 } ) ;
1313} ) ;
1414
1515describe ( 'convertToFahrenheit' , ( ) => {
16- test ( 'works' , ( ) => {
16+ test . skip ( 'works' , ( ) => {
1717 expect ( convertToFahrenheit ( 0 ) ) . toEqual ( 32 ) ;
1818 } ) ;
19- test ( 'rounds to 1 decimal' , ( ) => {
19+ test . skip ( 'rounds to 1 decimal' , ( ) => {
2020 expect ( convertToFahrenheit ( 73.2 ) ) . toEqual ( 163.8 ) ;
2121 } ) ;
22- test ( 'works with negatives' , ( ) => {
22+ test . skip ( 'works with negatives' , ( ) => {
2323 expect ( convertToFahrenheit ( - 10 ) ) . toEqual ( 14 ) ;
2424 } ) ;
2525} ) ;
You can’t perform that action at this time.
0 commit comments