Files
JavaScript/String/test/MaxWord.test.js
2021-10-05 12:49:23 +05:30

13 lines
354 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 mostOccurringWord = maxWord(string)
expect(mostOccurringWord).toBe('ba')
})
})