You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exports[`storybook-configuration generator should add required targets 3`] =`
176
+
"import {qwikCityDecorator} from 'storybook-framework-qwik/qwik-city-decorator';
177
+
export const decorators = [qwikCityDecorator];
178
+
"
179
+
`;
180
+
181
+
exports[`storybook-configuration generator should conditionally add qwikCity decorator to preview.ts matches the snapshot when qwikCitySupport is "auto" and project is "test-project" 1`] =`
182
+
"import {qwikCityDecorator} from 'storybook-framework-qwik/qwik-city-decorator';
183
+
export const decorators = [qwikCityDecorator];
184
+
"
185
+
`;
186
+
187
+
exports[`storybook-configuration generator should conditionally add qwikCity decorator to preview.ts matches the snapshot when qwikCitySupport is "auto" and project is "test-project-lib" 1`] =`
188
+
"// uncomment this if current project requires qwikCity
189
+
// import {qwikCityDecorator} from 'storybook-framework-qwik/qwik-city-decorator';
190
+
// export const decorators = [qwikCityDecorator];
191
+
"
192
+
`;
193
+
194
+
exports[`storybook-configuration generator should conditionally add qwikCity decorator to preview.ts matches the snapshot when qwikCitySupport is "false" and project is "test-project" 1`] =`
195
+
"// uncomment this if current project requires qwikCity
196
+
// import {qwikCityDecorator} from 'storybook-framework-qwik/qwik-city-decorator';
197
+
// export const decorators = [qwikCityDecorator];
198
+
"
199
+
`;
200
+
201
+
exports[`storybook-configuration generator should conditionally add qwikCity decorator to preview.ts matches the snapshot when qwikCitySupport is "false" and project is "test-project-lib" 1`] =`
202
+
"// uncomment this if current project requires qwikCity
203
+
// import {qwikCityDecorator} from 'storybook-framework-qwik/qwik-city-decorator';
204
+
// export const decorators = [qwikCityDecorator];
205
+
"
206
+
`;
207
+
208
+
exports[`storybook-configuration generator should conditionally add qwikCity decorator to preview.ts matches the snapshot when qwikCitySupport is "true" and project is "test-project" 1`] =`
209
+
"import {qwikCityDecorator} from 'storybook-framework-qwik/qwik-city-decorator';
210
+
export const decorators = [qwikCityDecorator];
211
+
"
212
+
`;
213
+
214
+
exports[`storybook-configuration generator should conditionally add qwikCity decorator to preview.ts matches the snapshot when qwikCitySupport is "true" and project is "test-project-lib" 1`] =`
215
+
"import {qwikCityDecorator} from 'storybook-framework-qwik/qwik-city-decorator';
Copy file name to clipboardExpand all lines: packages/qwik-nx/src/generators/storybook-configuration/files/.storybook/main.__configExtension__.template
0 commit comments