Variables: added __user.email to global variable (#28853)

* added email to global variable.

* forgot to increase the count.
This commit is contained in:
Marcus Andersson
2020-11-05 15:26:08 +01:00
committed by GitHub
parent deb8889331
commit dbaf213f8a
6 changed files with 7 additions and 2 deletions

View File

@@ -19,6 +19,7 @@ e2e.scenario({
'__org.id = 1',
'__user.id = 1',
'__user.login = admin',
'__user.email = admin@localhost',
`Server:raw = A'A"A,BB\\B,CCC`,
`Server:regex = (A'A"A|BB\\\\B|CCC)`,
`Server:lucene = ("A'A\\"A" OR "BB\\\\B" OR "CCC")`,
@@ -38,7 +39,7 @@ e2e.scenario({
e2e()
.get('.markdown-html li')
.should('have.length', 22)
.should('have.length', 23)
.each(element => {
items.push(element.text());
})