Test files linted
This commit is contained in:
@ -1,2 +1,2 @@
|
||||
const removeVowels = (str, repl = '') => str.replace(/[aeiou]/gi,repl);
|
||||
const removeVowels = (str, repl = '') => str.replace(/[aeiou]/gi, repl);
|
||||
module.exports = removeVowels;
|
||||
|
||||
@ -3,4 +3,4 @@ const removeVowels = require('./removeVowels.js');
|
||||
|
||||
test('removeVowels is a Function', () => {
|
||||
expect(removeVowels).toBeInstanceOf(Function);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user