7 lines
202 B
JavaScript
7 lines
202 B
JavaScript
const expect = require('expect');
|
|
const isArmstrongNumber = require('./isArmstrongNumber.js');
|
|
|
|
test('isArmstrongNumber is a Function', () => {
|
|
expect(isArmstrongNumber).toBeInstanceOf(Function);
|
|
});
|