tests: disable channel shorts tests
This commit is contained in:
parent
e9fb16353a
commit
459f2b2af0
1 changed files with 5 additions and 2 deletions
|
|
@ -827,6 +827,7 @@ fn channel_videos(rp: RustyPipe) {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[rstest]
|
#[rstest]
|
||||||
|
#[ignore]
|
||||||
fn channel_shorts(rp: RustyPipe) {
|
fn channel_shorts(rp: RustyPipe) {
|
||||||
let channel = tokio_test::block_on(
|
let channel = tokio_test::block_on(
|
||||||
rp.query()
|
rp.query()
|
||||||
|
|
@ -1006,8 +1007,9 @@ fn channel_more(
|
||||||
|
|
||||||
#[rstest]
|
#[rstest]
|
||||||
#[case::videos("UCcdwLMPsaU2ezNSJU1nFoBQ", ChannelVideoTab::Videos)]
|
#[case::videos("UCcdwLMPsaU2ezNSJU1nFoBQ", ChannelVideoTab::Videos)]
|
||||||
#[case::shorts("UCcdwLMPsaU2ezNSJU1nFoBQ", ChannelVideoTab::Shorts)]
|
|
||||||
#[case::live("UCvqRdlKsE5Q8mf8YXbdIJLw", ChannelVideoTab::Live)]
|
#[case::live("UCvqRdlKsE5Q8mf8YXbdIJLw", ChannelVideoTab::Live)]
|
||||||
|
#[ignore]
|
||||||
|
#[case::shorts("UCcdwLMPsaU2ezNSJU1nFoBQ", ChannelVideoTab::Shorts)]
|
||||||
fn channel_order_latest(#[case] id: &str, #[case] tab: ChannelVideoTab, rp: RustyPipe) {
|
fn channel_order_latest(#[case] id: &str, #[case] tab: ChannelVideoTab, rp: RustyPipe) {
|
||||||
let latest = tokio_test::block_on(rp.query().channel_videos_tab_order(
|
let latest = tokio_test::block_on(rp.query().channel_videos_tab_order(
|
||||||
id,
|
id,
|
||||||
|
|
@ -1033,8 +1035,9 @@ fn channel_order_latest(#[case] id: &str, #[case] tab: ChannelVideoTab, rp: Rust
|
||||||
|
|
||||||
#[rstest]
|
#[rstest]
|
||||||
#[case::videos("UCcdwLMPsaU2ezNSJU1nFoBQ", ChannelVideoTab::Videos, "XqZsoesa55w")]
|
#[case::videos("UCcdwLMPsaU2ezNSJU1nFoBQ", ChannelVideoTab::Videos, "XqZsoesa55w")]
|
||||||
#[case::shorts("UCcdwLMPsaU2ezNSJU1nFoBQ", ChannelVideoTab::Shorts, "k91vRvXGwHs")]
|
|
||||||
#[case::live("UCvqRdlKsE5Q8mf8YXbdIJLw", ChannelVideoTab::Live, "ojes5ULOqhc")]
|
#[case::live("UCvqRdlKsE5Q8mf8YXbdIJLw", ChannelVideoTab::Live, "ojes5ULOqhc")]
|
||||||
|
#[ignore]
|
||||||
|
#[case::shorts("UCcdwLMPsaU2ezNSJU1nFoBQ", ChannelVideoTab::Shorts, "k91vRvXGwHs")]
|
||||||
fn channel_order_popular(
|
fn channel_order_popular(
|
||||||
#[case] id: &str,
|
#[case] id: &str,
|
||||||
#[case] tab: ChannelVideoTab,
|
#[case] tab: ChannelVideoTab,
|
||||||
|
|
|
||||||
Reference in a new issue