Skip to content

Commit

Permalink
feat: expose flp pipeline from index
Browse files Browse the repository at this point in the history
closes #5
  • Loading branch information
antongolub committed Mar 5, 2020
1 parent b4f9030 commit c470196
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/main/ts/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export { createHttpPipe } from './pipes/http'
export { createMaskerPipe, panMaskerPipe } from './pipes/masker'
export { createFlpPipeline, eventifyPipe } from './pipes/flp'
export { createTransmitter, createTransmittable } from './transmitter'

export * from './interfaces'
Expand Down
8 changes: 7 additions & 1 deletion src/test/ts/index.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
import {
createTransmitter,
createHttpPipe
createHttpPipe,
createFlpPipeline,
createTransmittable,
createMaskerPipe,
} from '../../main/ts'

describe('index', () => {
it('has proper export', () => {
expect(createTransmitter).toEqual(expect.any(Function))
expect(createHttpPipe).toEqual(expect.any(Function))
expect(createFlpPipeline).toEqual(expect.any(Function))
expect(createTransmittable).toEqual(expect.any(Function))
expect(createMaskerPipe).toEqual(expect.any(Function))
})
})

0 comments on commit c470196

Please sign in to comment.