odin-default-js-exercises/tempConversion/tempConversion.spec.js

26 lines
629 B
JavaScript
Raw Normal View History

const expect = require('expect');const {ftoc, ctof} = require('./tempConversion')
2017-08-25 15:27:07 +00:00
describe('ftoc', function() {
it('works', function() {
expect(ftoc(32)).toEqual(0);
});
xit('rounds to 1 decimal', function() {
2017-08-25 15:27:07 +00:00
expect(ftoc(100)).toEqual(37.8);
});
xit('works with negatives', function() {
2017-08-25 15:27:07 +00:00
expect(ftoc(-100)).toEqual(-73.3);
});
});
describe('ctof', function() {
xit('works', function() {
2017-08-25 15:27:07 +00:00
expect(ctof(0)).toEqual(32);
});
xit('rounds to 1 decimal', function() {
2017-08-25 15:27:07 +00:00
expect(ctof(73.2)).toEqual(163.8);
});
xit('works with negatives', function() {
2017-08-25 15:27:07 +00:00
expect(ctof(-10)).toEqual(14);
});
});