mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00
perf(all): minify better by using arrow functions (#18730)
This commit is contained in:
@ -2,11 +2,11 @@ import { newE2EPage } from '@stencil/core/testing';
|
||||
|
||||
import { dragElementBy, generateE2EUrl, listenForEvent, waitForFunctionTestContext } from '../../../utils/test/utils';
|
||||
|
||||
export async function testPickerColumn(
|
||||
export const testPickerColumn = async (
|
||||
type: string,
|
||||
selector: string,
|
||||
rtl = false
|
||||
) {
|
||||
) => {
|
||||
try {
|
||||
const pageUrl = generateE2EUrl('picker-column', type, rtl);
|
||||
|
||||
@ -53,4 +53,4 @@ export async function testPickerColumn(
|
||||
} catch (err) {
|
||||
throw err;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user