SIGN IN SIGN UP

Algorithms and Data Structures implemented in JavaScript for beginners, following best practices.

34084 0 0 JavaScript
import upper from '../Upper'
2021-12-06 21:26:14 +05:30
describe('Testing the Upper function', () => {
2021-12-06 21:26:14 +05:30
it('return uppercase strings', () => {
expect(upper('hello')).toBe('HELLO')
expect(upper('WORLD')).toBe('WORLD')
expect(upper('hello_WORLD')).toBe('HELLO_WORLD')
})
})