From 1b16e1f3785d6e984c14a218ab4920276e544483 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Mon, 15 Apr 2019 16:50:03 -0400 Subject: [PATCH] chore(): add rtl label to appropriate tests --- .../components/action-sheet/test/basic/e2e.ts | 16 ++++++++-------- core/src/components/alert/test/basic/e2e.ts | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/core/src/components/action-sheet/test/basic/e2e.ts b/core/src/components/action-sheet/test/basic/e2e.ts index 6a204078f3..685541bbc1 100644 --- a/core/src/components/action-sheet/test/basic/e2e.ts +++ b/core/src/components/action-sheet/test/basic/e2e.ts @@ -38,34 +38,34 @@ test('action-sheet: basic, scroll without cancel', async () => { * RTL Tests */ -test('action-sheet: basic', async () => { +test('action-sheet:rtl: basic', async () => { await testActionSheet(DIRECTORY, '#basic', true); }); -test('action-sheet: basic, alert from action sheet', async () => { +test('action-sheet:rtl: basic, alert from action sheet', async () => { await testActionSheet(DIRECTORY, '#alertFromActionSheet', true, testActionSheetAlert); }); -test('action-sheet: basic, cancel only', async () => { +test('action-sheet:rtl: basic, cancel only', async () => { await testActionSheet(DIRECTORY, '#cancelOnly', true); }); -test('action-sheet: basic, custom', async () => { +test('action-sheet:rtl: basic, custom', async () => { await testActionSheet(DIRECTORY, '#custom', true); }); -test('action-sheet: basic, icons', async () => { +test('action-sheet:rtl: basic, icons', async () => { await testActionSheet(DIRECTORY, '#icons', true); }); -test('action-sheet: basic, no backdrop dismiss', async () => { +test('action-sheet:rtl: basic, no backdrop dismiss', async () => { await testActionSheet(DIRECTORY, '#noBackdropDismiss', true, testActionSheetBackdrop); }); -test('action-sheet: basic, scrollable options', async () => { +test('action-sheet:rtl: basic, scrollable options', async () => { await testActionSheet(DIRECTORY, '#scrollableOptions', true); }); -test('action-sheet: basic, scroll without cancel', async () => { +test('action-sheet:rtl: basic, scroll without cancel', async () => { await testActionSheet(DIRECTORY, '#scrollWithoutCancel', true); }); diff --git a/core/src/components/alert/test/basic/e2e.ts b/core/src/components/alert/test/basic/e2e.ts index 96b213f902..d910271de1 100644 --- a/core/src/components/alert/test/basic/e2e.ts +++ b/core/src/components/alert/test/basic/e2e.ts @@ -37,34 +37,34 @@ test(`alert: basic, checkbox`, async () => { // Right to Left tests // ------------------------------------------------------ -test(`alert: basic`, async () => { +test(`alert:rtl: basic`, async () => { await testAlert(DIRECTORY, '#basic', true); }); -test(`alert: basic, long message`, async () => { +test(`alert:rtl: basic, long message`, async () => { await testAlert(DIRECTORY, '#longMessage', true); }); -test(`alert: basic, multiple buttons`, async () => { +test(`alert:rtl: basic, multiple buttons`, async () => { await testAlert(DIRECTORY, '#multipleButtons', true); }); -test(`alert: basic, no message`, async () => { +test(`alert:rtl: basic, no message`, async () => { await testAlert(DIRECTORY, '#noMessage', true); }); -test(`alert: basic, confirm`, async () => { +test(`alert:rtl: basic, confirm`, async () => { await testAlert(DIRECTORY, '#confirm', true); }); -test(`alert: basic, prompt`, async () => { +test(`alert:rtl: basic, prompt`, async () => { await testAlert(DIRECTORY, '#prompt', true); }); -test(`alert: basic, radio`, async () => { +test(`alert:rtl: basic, radio`, async () => { await testAlert(DIRECTORY, '#radio', true); }); -test(`alert: basic, checkbox`, async () => { +test(`alert:rtl: basic, checkbox`, async () => { await testAlert(DIRECTORY, '#checkbox', true); });