Files
30-seconds-of-code/test/radsToDegrees/radsToDegrees.test.js
2018-06-18 18:13:18 +03:00

10 lines
283 B
JavaScript

const expect = require('expect');
const radsToDegrees = require('./radsToDegrees.js');
test('radsToDegrees is a Function', () => {
expect(radsToDegrees).toBeInstanceOf(Function);
});
test('Returns the appropriate value', () => {
expect(radsToDegrees(Math.PI / 2)).toBe(90);
});