Remove removeVowels
This commit is contained in:
@ -1,11 +0,0 @@
|
||||
const {removeVowels} = require('./_30s.js');
|
||||
|
||||
test('removeVowels is a Function', () => {
|
||||
expect(removeVowels).toBeInstanceOf(Function);
|
||||
});
|
||||
test('Removes vowels.', () => {
|
||||
expect(removeVowels('foobAr')).toBe('fbr');
|
||||
});
|
||||
test('Replaces vowels.', () => {
|
||||
expect(removeVowels('foobAr', '*')).toBe('f**b*r');
|
||||
});
|
||||
Reference in New Issue
Block a user