Delete code/e2e-tests/toolbar.spec.ts

This commit is contained in:
Norbert de Langen 2025-03-21 14:09:20 +01:00 committed by GitHub
parent aaf52da51b
commit 477c3488e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,37 +0,0 @@
import { expect, test } from '@playwright/test';
import process from 'process';
import { SbPage } from './util';
const storybookUrl = process.env.STORYBOOK_URL || 'http://localhost:8001';
test.describe('toolbar', () => {
test.beforeEach(async ({ page }) => {
await page.goto(storybookUrl);
await new SbPage(page, expect).waitUntilLoaded();
});
test('should have locale button in the toolbar', async ({ page }) => {
const sbPage = new SbPage(page, expect);
// Click on viewport button and select spanish
await sbPage.navigateToStory('core/toolbar/globals', 'basic');
await sbPage.selectToolbar('[title="Internationalization locale"]', '#list-item-es');
// Check that spanish is selected
await expect(sbPage.previewRoot()).toContainText('Hola');
});
test('locale button should be disabled for story that overrides locale global', async ({
page,
}) => {
const sbPage = new SbPage(page, expect);
// Click on viewport button and select spanish
await sbPage.navigateToStory('core/toolbar/globals', 'override-locale');
await expect(sbPage.previewRoot()).toContainText('안녕하세요');
const button = sbPage.page.locator('[title="Internationalization locale"]');
await expect(button).toHaveAttribute('disabled', '');
});
});