mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Delete code/e2e-tests/toolbar.spec.ts
This commit is contained in:
parent
aaf52da51b
commit
477c3488e3
@ -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', '');
|
||||
});
|
||||
});
|
Loading…
x
Reference in New Issue
Block a user