"UA-Tests as they were meant to be"
You will need a google account for login and docker-compose.
In order to start an instance of the test-editor, use docker-compose up with the example docker-compose.yml. Open your browser to http://localhost:4200.
version: "3"
services:
persistence:
image: testeditor/persistence:latest
ports:
- "9080:8080"
environment:
TARGET_REPO: "https://github.com/test-editor/language-examples.git"
BRANCH_NAME: "feature/gonk"
REPO_MODE: "pullOnly"
xtext:
image: testeditor/xtext:latest
ports:
- "8080:8080"
environment:
TARGET_REPO: "https://github.com/test-editor/language-examples.git"
BRANCH_NAME: "feature/gonk"
web:
image: testeditor/web:latest
ports:
- "4200:4200"
depends_on:
- persistence
- xtext
The images testeditor/* are based on the sources of the github projects github.com/test-editor (https://github.com/test-editor).
The Test-Editor is a web-editor for UA-Tests written in a domain specific language (a language designed for writing tests). It comes with backend services that allow test execution and recording.
snapshot = latest merged pull request into the master branch of the respective github project latest = pointer to the latest published version v.. = published version
Content type
Image
Digest
Size
33 MB
Last updated
over 6 years ago
docker pull testeditor/web