This commit is contained in:
Carl Downing
2023-07-30 13:59:43 -07:00
parent a72bcbfe75
commit c2729af014

View File

@@ -1,7 +1,7 @@
import Text from '../../Types/Text';
describe('class Text', () => {
test('Text.uppercaseFirstLetter should make string frist letter Uppercase', () => {
test('Text.uppercaseFirstLetter should make string first letter Uppercase', () => {
expect(Text.uppercaseFirstLetter('text')).toEqual('Text');
expect(Text.uppercaseFirstLetter('another test')).toEqual(
'Another test'