fix(core): update
This commit is contained in:
16
test/test.ts
16
test/test.ts
@ -1,15 +1,15 @@
|
||||
import fs = require('fs')
|
||||
import { expect, tap } from 'tapbundle'
|
||||
import fs = require('fs');
|
||||
import { expect, tap } from '@pushrocks/tapbundle';
|
||||
|
||||
import * as smartstream from '../dist/index'
|
||||
import * as smartstream from '../ts/index';
|
||||
|
||||
let testSmartstream: smartstream.Smartstream
|
||||
let testSmartstream: smartstream.Smartstream;
|
||||
tap.test('should combine a stream', async () => {
|
||||
testSmartstream = new smartstream.Smartstream([
|
||||
fs.createReadStream('./test/assets/test.md'),
|
||||
fs.createWriteStream('./test/assets/testCopy.md')
|
||||
])
|
||||
await testSmartstream.run()
|
||||
})
|
||||
]);
|
||||
await testSmartstream.run();
|
||||
});
|
||||
|
||||
tap.start()
|
||||
tap.start();
|
||||
|
Reference in New Issue
Block a user