Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 680 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 680 Bytes

Build Status

engine

Lumeer Backend Engine

Running tests

War

Web application tests are switched off by default because they take a lot of time. To explicitly run them, first make sure you have the most recent build in your local Maven repository:

$ mvn clean install

Next switch to war directory and run tests disabling the default profile:

$ mvn test -P-default

Use this to run a specified test method in your test class:

$ mvn -Dtest=YourTestClass#yourTestMethod test -P-default