-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
11 changed files
with
2,210 additions
and
71 deletions.
There are no files selected for viewing
444 changes: 404 additions & 40 deletions
444
...t/src/components/apps-browse/__tests__/__snapshots__/app-search-filters-bar.test.tsx.snap
Large diffs are not rendered by default.
Oops, something went wrong.
1,694 changes: 1,694 additions & 0 deletions
1,694
...s/app-market/src/components/apps-browse/__tests__/__snapshots__/apps-browse.test.tsx.snap
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
packages/app-market/src/core/__mocks__/use-apps-browse-state.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import { CategoryModelPagedResult } from '@reapit/foundations-ts-definitions' | ||
|
||
export const mockCategoryModelPagedResult: CategoryModelPagedResult = { | ||
data: [ | ||
{ | ||
id: '9', | ||
name: 'Tools', | ||
description: 'General purpose tools', | ||
}, | ||
{ | ||
id: '8', | ||
name: 'Social', | ||
description: 'Social media and collaborative', | ||
}, | ||
{ | ||
id: '7', | ||
name: 'Marketing', | ||
description: 'Marketing and advertisement', | ||
}, | ||
{ | ||
id: '6', | ||
name: 'Communication', | ||
description: 'Messaging and communication', | ||
}, | ||
{ | ||
id: '5', | ||
name: 'Media', | ||
description: 'Pictures and video', | ||
}, | ||
{ | ||
id: '4', | ||
name: 'Events', | ||
description: 'Events and scheduling', | ||
}, | ||
{ | ||
id: '3', | ||
name: 'Finance', | ||
description: 'Finance apps', | ||
}, | ||
{ | ||
id: '2', | ||
name: 'Productivity', | ||
description: 'Productivity aids', | ||
}, | ||
{ | ||
id: '1', | ||
name: 'Other', | ||
description: 'Everything else', | ||
}, | ||
], | ||
pageNumber: 1, | ||
pageSize: 25, | ||
pageCount: 9, | ||
totalCount: 9, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters