feat: renderFileToNodeStream(filepath, scope)

This commit is contained in:
harttle
2021-10-03 21:21:25 +08:00
parent dd325362f9
commit 68c4cfcfb6
7 changed files with 107 additions and 4 deletions
@@ -0,0 +1,8 @@
import { expect } from 'chai'
import { StreamedEmitter } from '../../../src/emitters/streamed-emitter-browser'
describe('emitters/streamed-emitter-browser', () => {
it('should throw when try to constructing', () => {
expect(() => new StreamedEmitter()).to.throw(/streaming not supported/)
})
})