Files
JavaScript/String/test/MaxWord.test.js
2021-10-03 22:08:47 +07:00

13 lines
352 B
JavaScript

import { maxWord } from '../MaxWord'
describe('Testing the maxWord function', () => {
it('Expect throw with non string argument', () => {
expect(() => maxWord(10)).toThrow()
})
it('get the max word', () => {
const string = 'ba ba ba ba banana'
const mostOccuringWord = maxWord(string)
expect(mostOccuringWord).toBe('ba')
})
})