Skip to content

Commit

Permalink
Export get and set Utils From Project (#8)
Browse files Browse the repository at this point in the history
Added get and set to the top level exports
so they can be used by consumers of the
library.

This is helpful for e2e tests where we want
to be able to change the status of the toolbar
on the fly.
  • Loading branch information
kinson authored Sep 28, 2021
1 parent 7dc00d1 commit 598acb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { MSWToolbar } from './component/MSWToolbar';
import { createUtils } from './utils';
import { createUtils, set, get } from './utils';

export { MSWToolbar, createUtils };
export { MSWToolbar, createUtils, set, get };
export * from './types';

0 comments on commit 598acb9

Please sign in to comment.