Merge pull request #6182 from storybooks/fix/react-native-storyshots-fix

fix: Add the raw method to the react-native implementation
This commit is contained in:
Michael Shilman 2019-03-19 20:45:53 +08:00 committed by GitHub
commit 81b1e30838
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -10,3 +10,4 @@ export const clearDecorators = preview.clearDecorators.bind(preview);
export const configure = preview.configure.bind(preview);
export const getStorybook = preview.getStorybook.bind(preview);
export const getStorybookUI = preview.getStorybookUI.bind(preview);
export const raw = preview.raw.bind(preview);

View File

@ -28,6 +28,7 @@ export default class Preview {
'addParameters',
'clearDecorators',
'getStorybook',
'raw',
].forEach(method => {
this[method] = this._clientApi[method].bind(this._clientApi);
});