We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 147b024 commit 6f17b42Copy full SHA for 6f17b42
test/production/play-tab.spec.ts
@@ -18,14 +18,6 @@ test.describe('Play tab', () => {
18
await expect(page.url()).toContain('https://play.kotlinlang.org/');
19
});
20
21
- test('Click on "Examples" button should open the related page', async ({ page }) => {
22
- const multiplatformButton = page.getByText('Examples').first();
23
- await expect(multiplatformButton).toBeVisible();
24
- await multiplatformButton.click();
25
- await expect(page.url()).toContain('https://play.kotlinlang.org/byExample');
26
-
27
- });
28
29
test('Click on "Koans" button should open the related page', async ({ page }) => {
30
const multiplatformButton = page.getByText('Koans');
31
await expect(multiplatformButton).toBeVisible();
0 commit comments