Sign inSign up

testeditor/web

By testeditor

Updated over 6 years ago

Web front end of the test-editor

Image
3

1.9K

testeditor/web repository overview

"UA-Tests as they were meant to be"

Quickstart

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

References

The images testeditor/* are based on the sources of the github projects github.com/test-editor (https://github.com/test-editor).

Details

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.

Tag semantic

snapshot = latest merged pull request into the master branch of the respective github project latest = pointer to the latest published version v.. = published version

Tag summary

Content type

Image

Digest

Size

33 MB

Last updated

over 6 years ago

docker pull testeditor/web