Skip to content

Commit

Permalink
Fix: \!vrtタグを追加
Browse files Browse the repository at this point in the history
[update snapshots]
  • Loading branch information
sevenc-nanashi committed Oct 23, 2024
1 parent 5f3a5b9 commit 6840218
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ export const Close: Story = {

export const Closed: Story = {
name: "閉じている",
tags: ["!vrt"],
args: {
openDialog: false,
},
Expand Down
1 change: 1 addition & 0 deletions src/components/Dialog/TextDialog/MessageDialog.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export const Close: Story = {

export const Closed: Story = {
name: "閉じている",
tags: ["!vrt"],
args: {
modelValue: false,
},
Expand Down
1 change: 1 addition & 0 deletions src/components/Dialog/TextDialog/QuestionDialog.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ export const ClickBackdropWithCancel: Story = {

export const Closed: Story = {
name: "閉じている",
tags: ["!vrt"],
args: {
modelValue: false,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,5 @@ export const OpenOfficialSite: Story = {

export const Closed: Story = {
name: "閉じている",
tags: ["!vrt"],
};
3 changes: 3 additions & 0 deletions tests/e2e/storybook/スクリーンショット.spec.mts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ for (const story of currentStories) {
for (const [story, stories] of Object.entries(allStories)) {
test.describe(story, () => {
for (const story of stories) {
if (story.tags.includes("!vrt")) {
continue;
}
test.describe(story.name, () => {
for (const [theme, name] of [
["light", "ライト"],
Expand Down

0 comments on commit 6840218

Please sign in to comment.