8000 [DT-2854] add an integration test to make sure dark mode toggling works through localstorage by andrewzamojc · Pull Request #2752 · temporalio/ui · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[DT-2854] add an integration test to make sure dark mode toggling works through localstorage #2752

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/lib/components/dark-mode-icon-button.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,6 @@
label={buttonText}
icon={buttonIcon}
on:click={cycleDarkModePreference}
data-testid="dark-mode-icon-button"
Copy link
Contributor Author
@andrewzamojc andrewzamojc May 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Annotation: Since the aria-label changes when you press the button, getByRole doesn't work well without re-selecting over and over. By using testid, I can get the element once and use it throughout the test.

/>
</Tooltip>
1 change: 1 addition & 0 deletions src/lib/components/dark-mode-navigation-button.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@
tooltip={buttonText}
label={buttonText}
icon={buttonIcon}
data-testid="dark-mode-navigation-button"
/>
1 change: 1 addition & 0 deletions src/lib/holocene/navigation/navigation-button.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<div
class="flex h-6 w-6 items-center after:absolute after:left-[calc(100%_+_1.5rem)] after:top-0 after:hidden after:h-8 after:items-center after:bg-slate-800 after:p-1 after:px-2 after:text-xs after:text-white after:content-[attr(data-tooltip)] group-data-[nav=closed]:hover:after:flex"
data-tooltip={tooltip}
aria-hidden="true"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Annotation: This icon is pure decoration / redundant information to a non-visual user. By aria-hiding it, the navigation button now has a clean accessible name.

>
<Icon name={icon} {animate} {active} />
</div>
Expand Down
48 changes: 48 additions & 0 deletions tests/integration/dark-mode.desktop.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import { expect, test } from '@playwright/test';

import { mockWorkflowsApis } from '~/test-utilities/mock-apis';

test.describe('Dark Mode Toggle', () => {
test.beforeEach(async ({ page }) => {
await mockWorkflowsApis(page);
await page.goto('/');
});

test('user can toggle dark mode between on, off, and system default', async ({
page,
}) => {
const nightLabel = 'Night';
const systemDefaultLabel = 'System Default';
const dayLabel = 'Day';

// starts on day mode
const button = page.getByTestId('dark-mode-icon-button');

await expect(button).toBeVisible();

expect(await page.evaluate(() => localStorage.getItem('dark mode'))).toBe(
null, // nothing in local storage yet
);

// after day is system mode
await button.click();
await expect(button).toHaveAccessibleName(systemDefaultLabel);
expect(await page.evaluate(() => localStorage.getItem('dark mode'))).toBe(
JSON.stringify('system'),
);

// after system is dark mode
await button.click();
await expect(button).toHaveAccessibleName(nightLabel);
expect(await page.evaluate(() => localStorage.getItem('dark mode'))).toBe(
JSON.stringify(true),
);

// cycle back to day
await button.click();
await expect(button).toHaveAccessibleName(dayLabel);
expect(await page.evaluate(() => localStorage.getItem('dark mode'))).toBe(
JSON.stringify(false),
);
});
});
51 changes: 51 additions & 0 deletions tests/integration/dark-mode.mobile.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
import { expect, test } from '@playwright/test';

import { mockWorkflowsApis } from '~/test-utilities/mock-apis';

test.describe('Dark Mode Toggle', () => {
test.beforeEach(async ({ page }) => {
await mockWorkflowsApis(page);
await page.goto('/');
});

test('user can toggle dark mode between on, off, and system default', async ({
page,
}) => {
const nightLabel = 'Night';
const systemDefaultLabel = 'System Default';
const dayLabel = 'Day';

// on mobile, the dark mode button is in the profile menu
await page.getByTestId('nav-profile-button').click();

// starts on day mode
const button = page.getByTestId('dark-mode-navigation-button');

await expect(button).toBeVisible();

expect(await page.evaluate(() => localStorage.getItem('dark mode'))).toBe(
null, // nothing in local storage yet
);

// after day is system mode
await button.click();
await expect(button).toHaveAccessibleName(systemDefaultLabel);
expect(await page.evaluate(() => localStorage.getItem('dark mode'))).toBe(
JSON.stringify('system'),
);

// after system is dark mode
await button.click();
await expect(button).toHaveAccessibleName(nightLabel);
expect(await page.evaluate(() => localStorage.getItem('dark mode'))).toBe(
JSON.stringify(true),
);

// cycle back to day
await button.click();
await expect(button).toHaveAccessibleName(dayLabel);
expect(await page.evaluate(() => localStorage.getItem('dark mode'))).toBe(
JSON.stringify(false),
);
});
});
Loading
0