@@ -6,6 +6,7 @@ test.describe('Main page buttons', () => {
66 await page . goto ( '/' ) ;
77 } ) ;
88
9+ // Skip test until finish KTL-4255
910 test . skip ( 'Hero section Get started button' , async ( { page, baseURL } ) => {
1011 const getStartedButton = page . getByTestId ( 'hero-block' ) . getByRole ( 'link' , { name : 'Get started' } ) ;
1112 await expect ( getStartedButton ) . toBeVisible ( ) ;
@@ -15,6 +16,7 @@ test.describe('Main page buttons', () => {
1516 await expect ( pageTitle ) . toContainText ( 'Get started with Kotlin' ) ;
1617 } ) ;
1718
19+ // Skip test until finish KTL-4255
1820 test . skip ( 'Develop by JetBrains link should navigate to JetBrains homepage' , async ( { page, context } ) => {
1921 const jetBrainsLink = page . getByTestId ( 'hero-block' ) . getByRole ( 'link' , { name : 'JetBrains' } ) ;
2022 await expect ( jetBrainsLink ) . toBeVisible ( ) ;
@@ -34,6 +36,7 @@ test.describe('Main page buttons', () => {
3436 await expect ( pageTitle ) . toContainText ( 'Kotlin' ) ;
3537 } ) ;
3638
39+ // Skip test until finish KTL-4255
3740 test . skip ( 'Why Kotlin Get started button' , async ( { page, baseURL } ) => {
3841 const whyKotlinButton = page . getByTestId ( 'why-kotlin-block' ) . getByRole ( 'link' , { name : 'Get started' } ) ;
3942 await expect ( whyKotlinButton ) . toBeVisible ( ) ;
0 commit comments