@chromatic-com/playwright 0.14.6 → 0.14.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3,7 +3,13 @@ import { addons } from 'storybook/manager-api';
|
|
|
3
3
|
// ../shared/storybook-config/manager.ts
|
|
4
4
|
addons.setConfig({
|
|
5
5
|
sidebar: {
|
|
6
|
-
//
|
|
6
|
+
// Ensures we use folders at the root-level instead of categories
|
|
7
7
|
showRoots: false
|
|
8
|
+
},
|
|
9
|
+
layoutCustomisations: {
|
|
10
|
+
// Hide toolbar options that don't make sense in e2e setup
|
|
11
|
+
showToolbar: () => false,
|
|
12
|
+
// Hide bottom panel that's empty in e2e setup
|
|
13
|
+
showPanel: () => false
|
|
8
14
|
}
|
|
9
15
|
});
|