Add tests for pipeLog and levenshtein
This commit is contained in:
@ -4,3 +4,6 @@ const {pipeLog} = require('./_30s.js');
|
||||
test('pipeLog is a Function', () => {
|
||||
expect(pipeLog).toBeInstanceOf(Function);
|
||||
});
|
||||
test('pipeLog returns the given value', () => {
|
||||
expect(pipeLog('hi')).toBe('hi');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user