js-practice/test/array/happy-number.test.js

7 lines
151 B
JavaScript
Raw Normal View History

2020-04-30 13:58:03 +08:00
import { isHappy } from '../../src/array/happy-number'
test('快乐数', () => {
expect(isHappy(19)).toBe(true)
expect(isHappy(5)).toBe(false)
})