Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
184941ea
Unverified
Commit
184941ea
authored
May 06, 2020
by
Steven Vachon
Committed by
GitHub
May 06, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
@grafana/e2e: added login credential env vars (#24359)
... for remote instances
parent
ff7db709
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
packages/grafana-e2e/src/flows/login.ts
+3
-3
packages/grafana-e2e/src/support/scenario.ts
+2
-1
No files found.
packages/grafana-e2e/src/flows/login.ts
View file @
184941ea
import
{
e2e
}
from
'../index'
;
export
const
login
=
(
username
:
string
,
password
:
string
)
=>
{
e2e
().
logToConsole
(
'Trying to login with
:'
,
{
username
,
password
}
);
export
const
login
=
(
username
:
string
=
'admin'
,
password
:
string
=
'admin'
)
=>
{
e2e
().
logToConsole
(
'Trying to login with
username:'
,
username
);
e2e
.
pages
.
Login
.
visit
();
e2e
.
pages
.
Login
.
username
()
.
should
(
'be.visible'
)
// prevents flakiness
...
...
@@ -14,5 +14,5 @@ export const login = (username: string, password: string) => {
e2e
()
.
get
(
'.login-page'
)
.
should
(
'not.exist'
);
e2e
().
logToConsole
(
'Logged in with
'
,
{
username
,
password
}
);
e2e
().
logToConsole
(
'Logged in with
username:'
,
username
);
};
packages/grafana-e2e/src/support/scenario.ts
View file @
184941ea
import
{
e2e
}
from
'../'
;
import
{
Flows
}
from
'../flows'
;
import
{
getScenarioContext
}
from
'./scenarioContext'
;
...
...
@@ -23,7 +24,7 @@ export const e2eScenario = ({
it
.
skip
(
itName
,
()
=>
scenario
());
}
else
{
beforeEach
(()
=>
{
Flows
.
login
(
'admin'
,
'admin'
);
Flows
.
login
(
e2e
.
env
(
'USERNAME'
),
e2e
.
env
(
'PASSWORD'
)
);
if
(
addScenarioDataSource
)
{
Flows
.
addDataSource
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment