Naming fix

This commit is contained in:
Angelos Chalaris
2018-10-16 20:24:09 +03:00
parent 6fcba24379
commit d778566cfb
2 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,9 @@
const expect = require('expect');
const kmphToMph = require('./kmphToMph.js');
test('kmphToMph is a Function', () => {
expect(kmphToMph).toBeInstanceOf(Function);
});
test('Returns mph from kph.', () => {
expect(kmphToMph(10)).toBe(6.21371192);
});