translatePigLatin("california")
should return "aliforniacay".
testString: 'assert.deepEqual(translatePigLatin("california"), "aliforniacay", ''translatePigLatin("california")
should return "aliforniacay".'');'
- text: translatePigLatin("paragraphs")
should return "aragraphspay".
testString: 'assert.deepEqual(translatePigLatin("paragraphs"), "aragraphspay", ''translatePigLatin("paragraphs")
should return "aragraphspay".'');'
- text: translatePigLatin("glove")
should return "oveglay".
testString: 'assert.deepEqual(translatePigLatin("glove"), "oveglay", ''translatePigLatin("glove")
should return "oveglay".'');'
- text: translatePigLatin("algorithm")
should return "algorithmway".
testString: 'assert.deepEqual(translatePigLatin("algorithm"), "algorithmway", ''translatePigLatin("algorithm")
should return "algorithmway".'');'
- text: translatePigLatin("eight")
should return "eightway".
testString: 'assert.deepEqual(translatePigLatin("eight"), "eightway", ''translatePigLatin("eight")
should return "eightway".'');'
- text: Should handle words where the first vowel comes in the end of the word.
testString: 'assert.deepEqual(translatePigLatin("schwartz"), "artzschway", ''Should handle words where the first vowel comes in the end of the word.'');'
- text: Should handle words without vowels.
testString: 'assert.deepEqual(translatePigLatin("rhythm"), "rhythmay", ''Should handle words without vowels.'');'
```