Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Storybook] Move FilteredSearch FilterList to deprecated folder #4749

Merged
merged 2 commits into from
Jul 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions e2e/components/FilterList.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ test.describe('FilterList', () => {
test.describe(theme, () => {
test('default @vrt', async ({page}) => {
await visit(page, {
id: 'components-filterlist--default',
id: 'deprecated-components-filterlist--default',
globals: {
colorScheme: theme,
},
Expand All @@ -20,7 +20,7 @@ test.describe('FilterList', () => {

test('axe @aat', async ({page}) => {
await visit(page, {
id: 'components-filterlist--default',
id: 'deprecated-components-filterlist--default',
globals: {
colorScheme: theme,
},
Expand All @@ -36,7 +36,7 @@ test.describe('FilterList', () => {
test.describe(theme, () => {
test('default @vrt', async ({page}) => {
await visit(page, {
id: 'components-filterlist--playground',
id: 'deprecated-components-filterlist--playground',
globals: {
colorScheme: theme,
},
Expand All @@ -48,7 +48,7 @@ test.describe('FilterList', () => {

test('axe @aat', async ({page}) => {
await visit(page, {
id: 'components-filterlist--playground',
id: 'deprecated-components-filterlist--playground',
globals: {
colorScheme: theme,
},
Expand Down
8 changes: 4 additions & 4 deletions e2e/components/FilteredSearch.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ test.describe('FilteredSearch', () => {
test.describe(theme, () => {
test('default @vrt', async ({page}) => {
await visit(page, {
id: 'components-filteredsearch--default',
id: 'deprecated-components-filteredsearch--default',
globals: {
colorScheme: theme,
},
Expand All @@ -20,7 +20,7 @@ test.describe('FilteredSearch', () => {

test('axe @aat', async ({page}) => {
await visit(page, {
id: 'components-filteredsearch--default',
id: 'deprecated-components-filteredsearch--default',
globals: {
colorScheme: theme,
},
Expand All @@ -36,7 +36,7 @@ test.describe('FilteredSearch', () => {
test.describe(theme, () => {
test('default @vrt', async ({page}) => {
await visit(page, {
id: 'components-filteredsearch--playground',
id: 'deprecated-components-filteredsearch--playground',
globals: {
colorScheme: theme,
},
Expand All @@ -48,7 +48,7 @@ test.describe('FilteredSearch', () => {

test('axe @aat', async ({page}) => {
await visit(page, {
id: 'components-filteredsearch--playground',
id: 'deprecated-components-filteredsearch--playground',
globals: {
colorScheme: theme,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type {Meta, StoryFn} from '@storybook/react'
import FilterList from './FilterList'

export default {
title: 'Components/FilterList',
title: 'Deprecated/Components/FilterList',
component: FilterList,
} as Meta<typeof FilterList>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import TextInput from '../../TextInput'
import {SearchIcon} from '@primer/octicons-react'

export default {
title: 'Components/FilteredSearch',
title: 'Deprecated/Components/FilteredSearch',
component: FilteredSearch,
} as Meta<typeof FilteredSearch>

Expand Down
Loading