refactor(test): Cleanup and added await logic for click filter

This commit is contained in:
Muhammed Mustafa
2022-11-14 18:22:48 +05:30
parent 6ebb80ddb7
commit 8308f8a3f2
18 changed files with 171 additions and 125 deletions

View File

@@ -145,11 +145,16 @@ const clickInviteMore = () => {
wrap-class-name="nc-modal-invite-user-and-share-base"
@cancel="emit('closed')"
>
<div class="flex flex-col">
<div class="flex flex-col" data-testid="invite-user-and-share-base-modal">
<div class="flex flex-row justify-between items-center pb-1.5 mb-2 border-b-1 w-full">
<a-typography-title class="select-none" :level="4"> {{ $t('activity.share') }}: {{ project.title }} </a-typography-title>
<a-button type="text" class="!rounded-md mr-1 -mt-1.5" @click="emit('closed')">
<a-button
type="text"
class="!rounded-md mr-1 -mt-1.5"
data-testid="invite-user-and-share-base-modal-close-btn"
@click="emit('closed')"
>
<template #icon>
<MaterialSymbolsCloseRounded class="flex mx-auto" />
</template>