From 759f0f8a5594a100f5ff2030e008ac6af521ba7c Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Fri, 5 May 2023 17:35:45 -0400 Subject: [PATCH] test(action-sheet): change mode to modes (#27409) Changes `mode` to `modes` in action sheet tests to fix failing build --- .../components/action-sheet/test/basic/action-sheet.e2e.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/components/action-sheet/test/basic/action-sheet.e2e.ts b/core/src/components/action-sheet/test/basic/action-sheet.e2e.ts index 2483a0b8f4..d422c55247 100644 --- a/core/src/components/action-sheet/test/basic/action-sheet.e2e.ts +++ b/core/src/components/action-sheet/test/basic/action-sheet.e2e.ts @@ -6,7 +6,7 @@ import { ActionSheetFixture } from './fixture'; /** * This behavior does not vary across modes/directions */ -configs({ mode: ['ios'], directions: ['ltr'] }).forEach(({ config, title }) => { +configs({ modes: ['ios'], directions: ['ltr'] }).forEach(({ config, title }) => { test.describe(title('action sheet: data'), () => { let actionSheetFixture!: ActionSheetFixture; test.beforeEach(async ({ page }) => { @@ -42,7 +42,7 @@ configs({ mode: ['ios'], directions: ['ltr'] }).forEach(({ config, title }) => { /** * This behavior does not vary across modes/directions */ -configs({ mode: ['ios'], directions: ['ltr'] }).forEach(({ config, title }) => { +configs({ modes: ['ios'], directions: ['ltr'] }).forEach(({ config, title }) => { test.describe(title('action sheet: variant functionality'), () => { let actionSheetFixture!: ActionSheetFixture; test.beforeEach(async ({ page }) => { @@ -78,7 +78,7 @@ configs({ mode: ['ios'], directions: ['ltr'] }).forEach(({ config, title }) => { /** * This behavior does not vary across modes/directions */ -configs({ mode: ['ios'], directions: ['ltr'] }).forEach(({ config, title }) => { +configs({ modes: ['ios'], directions: ['ltr'] }).forEach(({ config, title }) => { test.describe(title('action sheet: focus trap'), () => { test('it should trap focus in action sheet', async ({ page, browserName }) => { await page.goto(`/src/components/action-sheet/test/basic`, config);