@storybook/html 9.0.0-rc.3 → 9.0.0-rc.5

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/html",
3
- "version": "9.0.0-rc.3",
3
+ "version": "9.0.0-rc.5",
4
4
  "description": "Storybook HTML renderer",
5
5
  "keywords": [
6
6
  "storybook"
@@ -53,7 +53,7 @@
53
53
  "typescript": "^5.8.3"
54
54
  },
55
55
  "peerDependencies": {
56
- "storybook": "^9.0.0-rc.3"
56
+ "storybook": "^9.0.0-rc.5"
57
57
  },
58
58
  "engines": {
59
59
  "node": ">=20.0.0"
@@ -13,7 +13,7 @@ export default {
13
13
 
14
14
  export const LoggedOut = {};
15
15
 
16
- // More on component testing: https://storybook.js.org/docs/writing-tests/component-testing
16
+ // More on component testing: https://storybook.js.org/docs/writing-tests/interaction-testing
17
17
  export const LoggedIn = {
18
18
  play: async ({ canvasElement }) => {
19
19
  const canvas = within(canvasElement);
@@ -17,7 +17,7 @@ export default meta;
17
17
 
18
18
  export const LoggedOut: StoryObj = {};
19
19
 
20
- // More on component testing: https://storybook.js.org/docs/writing-tests/component-testing
20
+ // More on component testing: https://storybook.js.org/docs/writing-tests/interaction-testing
21
21
  export const LoggedIn: StoryObj = {
22
22
  play: async ({ canvasElement }) => {
23
23
  const canvas = within(canvasElement);