feat: introduce playwright (#1194)

* feat: introduce playwright

* test: migrate apps folder to playwright (#1201)

* test: rewrite connections tests with playwright (#1203)

* test: rewrite executions tests with playwright (#1207)

* test: rewrite flow editor tests with playwright (#1212)

* test(flow-editor): rewrite tests using serial mode (#1218)

* test: update custom connection creation paths

* test: move login logic to page fixture

* test: remove cypress tests and deps

---------

Co-authored-by: Ali BARIN <ali.barin53@gmail.com>
This commit is contained in:
Rıdvan Akca
2023-08-18 00:31:38 +03:00
committed by GitHub
parent 590780a539
commit dace794167
29 changed files with 709 additions and 813 deletions

View File

@@ -14,6 +14,7 @@ type TextFieldProps = {
name: string;
clickToCopy?: boolean;
readOnly?: boolean;
'data-test'?: string;
} & MuiTextFieldProps;
const createCopyAdornment = (
@@ -44,6 +45,7 @@ export default function TextField(props: TextFieldProps): React.ReactElement {
disabled = false,
onBlur,
onChange,
'data-test': dataTest,
...textFieldProps
} = props;
@@ -82,6 +84,9 @@ export default function TextField(props: TextFieldProps): React.ReactElement {
readOnly,
endAdornment: clickToCopy ? createCopyAdornment(inputRef) : null,
}}
inputProps={{
'data-test': dataTest,
}}
/>
)}
/>