Skip to content

Commit

Permalink
[Storybook] Move FilteredSearch FilterList to deprecated folder (#4749)
Browse files Browse the repository at this point in the history
* move to deprecated folder

* test(e2e): update urls for FilterList and FilteredSearch

---------

Co-authored-by: Josh Black <joshblack@users.noreply.github.com>
  • Loading branch information
tbenning and joshblack committed Jul 18, 2024
1 parent c744a8e commit 0f86c7a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
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

0 comments on commit 0f86c7a

Please sign in to comment.