-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
E2E test: Run Word Count Example #175
Comments
@whoww @Fabsi110 Um mit dem End-to-end-Test auch die Schnittstelle zum Backend testen zu können, bräuchten wir nach meiner Logik folgende Abfolge:
Irgendeine Idee das mit maven hinzubekommen? |
Das sollten wir eigentlich schon haben. Dieser Ausschnitt aus der pom.xml führt grunt test aus, noch während der generate-resources Phase. <execution>
<id>grunt test</id>
<goals>
<goal>grunt</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<arguments>test --no-color</arguments>
</configuration>
</execution> Wenn maven clean package ausgeführt wird, wird in dem Output auf der Konsole der Befehl auch angezeigt. Sieht einfach so aus als gäbe es noch keine Tests, oder?! [INFO] selenium standalone is up to date. |
ne, ich meinte jetty zu starten und zu stoppen. hatte ich mich blöd ausgedrückt. hab aber eine lösung gefunden und den PR angefangen. Siehe #187 |
depends on #172
The text was updated successfully, but these errors were encountered: