-
Notifications
You must be signed in to change notification settings - Fork 274
WS-200: Migrate LiveRadio pages to NextJS - Simorgh changes #13928
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
Merged
Merged
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
dca3e9e
Move cypress tests to ws-nextjs-app
hotinglok af894ff
WS-200: Initial commit
Isabella-Mitchell d0ff5ab
WS-200: Tidies. Adds toggle support and unit tests.
Isabella-Mitchell 6cd9942
Merge branch 'latest' into WS-200-migrate-liveradio-simorgh
Isabella-Mitchell c98c92f
WS-200: Fix tests
Isabella-Mitchell 6c0b601
WS-200: Tidies
Isabella-Mitchell 8a9bc03
WS-200: Tidies. Adds unit test
Isabella-Mitchell 92b9b1b
Merge branch 'latest' into WS-200-migrate-liveradio-simorgh
Isabella-Mitchell eb5c005
WS-200: Fix test
Isabella-Mitchell 5d011f4
Merge branch 'latest' into WS-200-migrate-liveradio-simorgh
shayneahchoon a5b9fda
WS-200: Tidies
Isabella-Mitchell e2225b2
WS-200: Tidies
Isabella-Mitchell 5dbd991
WS-2494: Migrates liveRadio Integration tests to NextJS app
Isabella-Mitchell 698a103
WS-2494: TS test. Updates snapshots
Isabella-Mitchell 23484b7
WS-2494: Define types
Isabella-Mitchell ca97e42
WS-2494: Adds passWithNoTests flag
Isabella-Mitchell 0f60440
Merge branch 'WS-200-migrate-liveradio-simorgh' into ws-2495-migrate-…
hotinglok 66b9af1
Fix failing test
hotinglok a4399d4
Re-add express tests
hotinglok dbd4e20
Merge branch 'latest' into WS-200-migrate-liveradio-simorgh
Isabella-Mitchell 181e4c7
Merge branch 'WS-200-migrate-liveradio-simorgh' into WS-2494-LiveRadi…
Isabella-Mitchell dd527e4
Merge branch 'WS-200-migrate-liveradio-simorgh' into ws-2495-migrate-…
Isabella-Mitchell e5d073d
WS-2540: Skips tests
Isabella-Mitchell b290709
WS-2540: Skips missed test
Isabella-Mitchell e7b1800
WS-2540: Removes express pages e2e tests
Isabella-Mitchell 0900698
Merge branch 'latest' into WS-200-migrate-liveradio-simorgh
Isabella-Mitchell c4e38de
Merge branch 'WS-200-migrate-liveradio-simorgh' into WS-2494-LiveRadi…
Isabella-Mitchell 02488bd
Merge branch 'WS-200-migrate-liveradio-simorgh' into ws-2495-migrate-…
Isabella-Mitchell b5d24d7
Merge pull request #13931 from bbc/WS-2494-LiveRadio-Integration
Isabella-Mitchell dc6d4c0
Merge branch 'WS-200-migrate-liveradio-simorgh' into ws-2495-migrate-…
Isabella-Mitchell 8ce38a9
Merge pull request #13926 from bbc/ws-2495-migrate-live-radio-e2es
Isabella-Mitchell 2178537
Merge branch 'WS-200-migrate-liveradio-simorgh' into WS-2540-remove-e…
Isabella-Mitchell b20b75a
WS-2540: Updates package.json
Isabella-Mitchell 95d2438
WS-200: Optimises test so that negative assertion does not rely on N…
Isabella-Mitchell 1235125
Merge branch 'WS-200-migrate-liveradio-simorgh' into WS-2540-remove-e…
Isabella-Mitchell bd9a46f
Merge pull request #13948 from bbc/WS-2540-remove-express-pages-e2e-test
Isabella-Mitchell 52adc51
Merge branch 'latest' into WS-200-migrate-liveradio-simorgh
Isabella-Mitchell 914d2e3
WS-200: Removes isTest mock from tests
Isabella-Mitchell File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The exported type name
LiveRadioPagePropsdescribes the shape ofpageData(language/name/summary/etc), not the React component props object. This is already causing confusion in the Next.js catch-all route types. Consider renaming this back to something likeLiveRadioPageData(and, if needed, introducing a separateLiveRadioPagePropstype that wraps{ pageData: LiveRadioPageData }).