Skip to content

Commit a819829

Browse files
committed
start
1 parent 3aa9c2f commit a819829

6 files changed

Lines changed: 3818 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/node_modules/

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,25 @@
11
# testlink-testcafe
22
end to end testing (experiments) using testcafe (https://devexpress.github.io/testcafe/)
3+
4+
## Testcafe installation
5+
You need node.js
6+
7+
This is the way I normally use testcafe:
8+
* install testcafe GLOBALLY: npm -g install testcafe
9+
* install testcage LOCALLY: npm install testcafe
10+
11+
Now you are ready to run the tests.
12+
13+
## Test case - Fresh installation
14+
Test configuration is setted using ENVironment variables.
15+
TL_URL: URL to the testlink installation
16+
TL_DBNAME: database name
17+
TL_DBADMIN: DBMD user with administrator rights
18+
TL_DBADMINPWD: the DBMD user password
19+
20+
the setens.sh scripts can be used to set these values in a Linux/OSX in this way:
21+
. ./setenv
22+
23+
then you can run the fresh install test:
24+
./runtest.sh ./test/fresh-install.js
25+

0 commit comments

Comments
 (0)