KEYCLOAK-8246 Disable Base UI tests by default

This commit is contained in:
vmuzikar 2018-09-06 13:08:24 +02:00 committed by Pavel Drozd
parent bd8510f4da
commit e59646aafb
2 changed files with 7 additions and 2 deletions

View file

@ -104,7 +104,7 @@ This differs them from other integration tests and Admin Console UI tests.
They are designed to work with most of the desktop browsers (HtmlUnit included) as well as mobile browsers (Chrome on Android and Safari on iOS). Please see [HOW-TO-RUN.md](HOW-TO-RUN.md) for details on supported browsers.
The tests are place in a separate module (`tests/other/base-ui`) and are run with HtmlUnit by default.
The tests are place in a separate module (`tests/other/base-ui`) and are disabled by default.
### Admin Console UI Tests

View file

@ -40,7 +40,6 @@
<module>adapters</module>
<module>sssd</module>
<module>springboot-tests</module>
<module>base-ui</module>
</modules>
<properties>
@ -168,6 +167,12 @@
<module>welcome-page</module>
</modules>
</profile>
<profile>
<id>base-ui</id>
<modules>
<module>base-ui</module>
</modules>
</profile>
</profiles>
</project>