Skip to content

Commit

Permalink
fix(config): expose configuration via rxjs exports (#3441)
Browse files Browse the repository at this point in the history
We weren't exposing configuration in a meaningful way from the rxjs module, this remedies that
  • Loading branch information
benlesh authored Mar 16, 2018
1 parent 469afe8 commit 4287424
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions spec/index-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,8 @@ describe('index', () => {
expect(index.using).to.exist;
expect(index.zip).to.exist;
});

it('should expose configuration', () => {
expect(index.config).to.exist;
});
});
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,6 @@ export { NEVER } from './internal/observable/never';

/* Types */
export * from './internal/types';

/* Config */
export { config } from './internal/config';

0 comments on commit 4287424

Please sign in to comment.