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