Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
Rocket.Chat
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RocketChat
Rocket.Chat
Commits
30782c70
Commit
30782c70
authored
2 years ago
by
Guilherme Gazzo
Browse files
Options
Downloads
Patches
Plain Diff
Chore: Fix e2e tests after sidebar
parent
39e4ae3a
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
apps/meteor/client/components/Sidebar/Sidebar.tsx
+1
-1
1 addition, 1 deletion
apps/meteor/client/components/Sidebar/Sidebar.tsx
apps/meteor/tests/e2e/page-objects/account-profile.ts
+1
-1
1 addition, 1 deletion
apps/meteor/tests/e2e/page-objects/account-profile.ts
with
2 additions
and
2 deletions
apps/meteor/client/components/Sidebar/Sidebar.tsx
+
1
−
1
View file @
30782c70
...
...
@@ -3,7 +3,7 @@ import type { FC } from 'react';
import
React
from
'
react
'
;
const
Sidebar
:
FC
=
({
children
,
...
props
})
=>
(
<
Box
display
=
'flex'
flexDirection
=
'column'
h
=
'full'
justifyContent
=
'stretch'
{
...
props
}
>
<
Box
display
=
'flex'
flexDirection
=
'column'
h
=
'full'
justifyContent
=
'stretch'
{
...
props
}
role
=
'navigation'
>
{
children
}
</
Box
>
);
...
...
This diff is collapsed.
Click to expand it.
apps/meteor/tests/e2e/page-objects/account-profile.ts
+
1
−
1
View file @
30782c70
...
...
@@ -41,7 +41,7 @@ export class AccountProfile {
}
get
btnClose
():
Locator
{
return
this
.
page
.
locator
(
'
aside[
role=
"
navigation
"] button >> i.rcx-icon--name-cross.rcx-icon
'
);
return
this
.
page
.
locator
(
'
role=navigation
>> role=button[name=Close]
'
);
}
get
inputToken
():
Locator
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment