Add e2e/ dir with Robot Framework tests for page loading, ban records, blocklist import, config edit. Add requirements.txt. Update Makefile with test commands. Update .gitignore, backend docs, testing requirements docs.
15 lines
362 B
Plaintext
15 lines
362 B
Plaintext
*** Settings ***
|
|
Resource ${CURDIR}/../../resources/common.resource
|
|
Resource ${CURDIR}/../../resources/auth.resource
|
|
|
|
*** Test Cases ***
|
|
Config Edit Page Opens
|
|
New Browser chromium headless=${TRUE}
|
|
Login As Admin
|
|
|
|
Go To ${FRONTEND_URL}/config
|
|
|
|
${content}= Get Page Source
|
|
Should Not Be Empty ${content}
|
|
|
|
Close Browser |