Files
liquidjs/test/unit/emitters/streamed-emitter-browser.ts
T

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/)
})
})