Travis build: 507 [cron]
This commit is contained in:
2
test/pipeLog/pipeLog.js
Normal file
2
test/pipeLog/pipeLog.js
Normal file
@ -0,0 +1,2 @@
|
||||
const pipeLog = data => console.log(data) || data;
|
||||
module.exports = pipeLog;
|
||||
6
test/pipeLog/pipeLog.test.js
Normal file
6
test/pipeLog/pipeLog.test.js
Normal file
@ -0,0 +1,6 @@
|
||||
const expect = require('expect');
|
||||
const pipeLog = require('./pipeLog.js');
|
||||
|
||||
test('pipeLog is a Function', () => {
|
||||
expect(pipeLog).toBeInstanceOf(Function);
|
||||
});
|
||||
3216
test/testlog
3216
test/testlog
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user