Skip to content

Commit 6911af0

Browse files
committed
fmt
1 parent a38ec6f commit 6911af0

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

apps/element-demo/test/e2e/phase3-text-and-hardening.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ test.describe('Phase 3: Text interactions and hardening', () => {
143143

144144
const allInputsDisabled = await root
145145
.locator('input[type="radio"], input[type="checkbox"]')
146-
.evaluateAll((nodes) =>
147-
nodes.length > 0 && nodes.every((node) => (node as HTMLInputElement).disabled)
146+
.evaluateAll(
147+
(nodes) => nodes.length > 0 && nodes.every((node) => (node as HTMLInputElement).disabled)
148148
);
149149
expect(allInputsDisabled).toBeTruthy();
150150

apps/element-demo/test/e2e/unified-player-strategy.spec.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,8 @@ test.describe('Unified element player strategy host', () => {
220220
test('multiple-choice keeps user selection across mode/role switches', async ({ page }) => {
221221
test.setTimeout(120_000);
222222

223-
const multipleChoiceDemo = process.env.UNIFIED_PLAYER_E2E_MC_DEMO?.trim() || 'math-algebra-quadratic';
223+
const multipleChoiceDemo =
224+
process.env.UNIFIED_PLAYER_E2E_MC_DEMO?.trim() || 'math-algebra-quadratic';
224225
await page.goto(
225226
`/multiple-choice/deliver?mode=gather&role=student&player=esm&demo=${multipleChoiceDemo}`
226227
);
@@ -304,7 +305,7 @@ test.describe('Unified element player strategy host', () => {
304305
expect(selectionVisibleReadOnly).toBeTruthy();
305306

306307
const sessionStillContainsSelection = await page.evaluate((value) => {
307-
const host = document.querySelector('pie-element-player') as any;
308+
const host = document.querySelector('pie-element-player') as any;
308309
const sessionValue = host?.session?.value;
309310
if (!Array.isArray(sessionValue) || !Array.isArray(value) || value.length === 0) {
310311
return false;

0 commit comments

Comments
 (0)