Travis build: 507 [cron]

This commit is contained in:
30secondsofcode
2018-09-22 20:13:16 +00:00
parent 267d198ca3
commit ba31c7cf39
5 changed files with 1639 additions and 1610 deletions

2
test/pipeLog/pipeLog.js Normal file
View File

@ -0,0 +1,2 @@
const pipeLog = data => console.log(data) || data;
module.exports = pipeLog;

View File

@ -0,0 +1,6 @@
const expect = require('expect');
const pipeLog = require('./pipeLog.js');
test('pipeLog is a Function', () => {
expect(pipeLog).toBeInstanceOf(Function);
});

File diff suppressed because it is too large Load Diff