From ff689237be13f64187adc88224755fa04e7c2d21 Mon Sep 17 00:00:00 2001 From: Norbert de Langen Date: Wed, 17 Jun 2020 10:58:13 +0200 Subject: [PATCH] FIX tests & versions --- .../addon-controls.stories.storyshot | 13 +++ .../addon-controls.stories.storyshot | 85 +++++++++++++++++++ .../addon-controls.stories.storyshot | 19 +++++ lib/api/src/version.ts | 2 +- 4 files changed, 118 insertions(+), 1 deletion(-) create mode 100644 examples/html-kitchen-sink/stories/__snapshots__/addon-controls.stories.storyshot create mode 100644 examples/svelte-kitchen-sink/src/stories/__snapshots__/addon-controls.stories.storyshot create mode 100644 examples/vue-kitchen-sink/src/stories/__snapshots__/addon-controls.stories.storyshot diff --git a/examples/html-kitchen-sink/stories/__snapshots__/addon-controls.stories.storyshot b/examples/html-kitchen-sink/stories/__snapshots__/addon-controls.stories.storyshot new file mode 100644 index 00000000000..67525782be1 --- /dev/null +++ b/examples/html-kitchen-sink/stories/__snapshots__/addon-controls.stories.storyshot @@ -0,0 +1,13 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Storyshots Addons/Controls Bonjour 1`] = ` +
+ Bonjour! +
+`; + +exports[`Storyshots Addons/Controls Hello 1`] = ` +
+ Hello! +
+`; diff --git a/examples/svelte-kitchen-sink/src/stories/__snapshots__/addon-controls.stories.storyshot b/examples/svelte-kitchen-sink/src/stories/__snapshots__/addon-controls.stories.storyshot new file mode 100644 index 00000000000..49461ae8f8f --- /dev/null +++ b/examples/svelte-kitchen-sink/src/stories/__snapshots__/addon-controls.stories.storyshot @@ -0,0 +1,85 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Storyshots Addon/Controls Rounded 1`] = ` +
+

+ Button view +

+ + + +

+ A little text to show this is a view. +

+ +

+ If we need to test components in a Svelte environment, for instance to test slot behaviour, +

+ +

+ then wrapping the component up in a view +

+ +

+ made just for the story is the simplest way to achieve this. +

+
+`; + +exports[`Storyshots Addon/Controls Square 1`] = ` +
+

+ Button view +

+ + + +

+ A little text to show this is a view. +

+ +

+ If we need to test components in a Svelte environment, for instance to test slot behaviour, +

+ +

+ then wrapping the component up in a view +

+ +

+ made just for the story is the simplest way to achieve this. +

+
+`; diff --git a/examples/vue-kitchen-sink/src/stories/__snapshots__/addon-controls.stories.storyshot b/examples/vue-kitchen-sink/src/stories/__snapshots__/addon-controls.stories.storyshot new file mode 100644 index 00000000000..9825397ee09 --- /dev/null +++ b/examples/vue-kitchen-sink/src/stories/__snapshots__/addon-controls.stories.storyshot @@ -0,0 +1,19 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Storyshots Addon/Controls Rounded 1`] = ` + +`; + +exports[`Storyshots Addon/Controls Square 1`] = ` + +`; diff --git a/lib/api/src/version.ts b/lib/api/src/version.ts index 6cd5db8e8dc..058e3f1f548 100644 --- a/lib/api/src/version.ts +++ b/lib/api/src/version.ts @@ -1 +1 @@ -export const version = '6.0.0-beta.29'; +export const version = '6.0.0-beta.30';