From 374252c3026d7de9765962e29ebf688bdbc9ad49 Mon Sep 17 00:00:00 2001 From: Asartea <76259120+Asartea@users.noreply.github.com> Date: Sat, 12 Nov 2022 20:49:28 +0100 Subject: [PATCH] Update tempConversion function's naming --- 07_tempConversion/tempConversion.js | 10 ++++----- 07_tempConversion/tempConversion.spec.js | 28 ++++++++++++------------ 2 files changed, 18 insertions(+), 20 deletions(-) diff --git a/07_tempConversion/tempConversion.js b/07_tempConversion/tempConversion.js index 6ef3e85..14153e0 100644 --- a/07_tempConversion/tempConversion.js +++ b/07_tempConversion/tempConversion.js @@ -1,13 +1,11 @@ -const ftoc = function() { - +const convertToCelsius = function() { }; -const ctof = function() { - +const convertToFahrenheit = function() { }; // Do not edit below this line module.exports = { - ftoc, - ctof + convertToCelsius, + convertToFahrenheit }; diff --git a/07_tempConversion/tempConversion.spec.js b/07_tempConversion/tempConversion.spec.js index 93679cc..7d0cc93 100644 --- a/07_tempConversion/tempConversion.spec.js +++ b/07_tempConversion/tempConversion.spec.js @@ -1,25 +1,25 @@ -const {ftoc, ctof} = require('./tempConversion') +const {convertToCelsius, convertToFahrenheit} = require('./tempConversion') -describe('ftoc', () => { +describe('convertToCelsius', () => { test('works', () => { - expect(ftoc(32)).toEqual(0); + expect(convertToCelsius(32)).toEqual(0); }); - test.skip('rounds to 1 decimal', () => { - expect(ftoc(100)).toEqual(37.8); + test('rounds to 1 decimal', () => { + expect(convertToCelsius(100)).toEqual(37.8); }); - test.skip('works with negatives', () => { - expect(ftoc(-100)).toEqual(-73.3); + test('works with negatives', () => { + expect(convertToCelsius(-100)).toEqual(-73.3); }); }); -describe('ctof', () => { - test.skip('works', () => { - expect(ctof(0)).toEqual(32); +describe('convertToFahrenheit', () => { + test('works', () => { + expect(convertToFahrenheit(0)).toEqual(32); }); - test.skip('rounds to 1 decimal', () => { - expect(ctof(73.2)).toEqual(163.8); + test('rounds to 1 decimal', () => { + expect(convertToFahrenheit(73.2)).toEqual(163.8); }); - test.skip('works with negatives', () => { - expect(ctof(-10)).toEqual(14); + test('works with negatives', () => { + expect(convertToFahrenheit(-10)).toEqual(14); }); });