mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
9 lines
304 B
TypeScript
9 lines
304 B
TypeScript
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/)
|
|
})
|
|
})
|