Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollovati committed Sep 24, 2020
1 parent 1096e4d commit c7e2e43
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 3 deletions.
24 changes: 24 additions & 0 deletions vertx-vaadin-flow-parent/vertx-vaadin-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,25 @@

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-bom</artifactId>
<version>${vaadin.platform.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!--
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>flow-server</artifactId>
<version>${vaadin.flow.version}</version>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>flow-server-production-mode</artifactId>
<version>${vaadin.flow.version}</version>
</dependency>
-->
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-testbench-core</artifactId>
Expand Down Expand Up @@ -64,6 +78,16 @@
<artifactId>vaadin-flow-sockjs</artifactId>
<version>${vertx-vaadin-flow.version}</version>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-core</artifactId>
<exclusions>
<exclusion>
<groupId>com.vaadin</groupId>
<artifactId>flow-push</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class TemplateHasInjectedSubTemplateView

@Tag("injected-child")
@HtmlImport("frontend://com/vaadin/flow/uitest/ui/template/InjectedChild.html")
@JsModule("./InjectedChild.js")
@JsModule("InjectedChild.js")
public static class InjectedChild extends PolymerTemplate<Message> {
@Override
protected Message getModel() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

@Tag("template-scalability-panel")
@HtmlImport("frontend://com/vaadin/flow/uitest/ui/template/template-scalability-panel.html")
@JsModule("./template-scalability-panel.js")
@JsModule("template-scalability-panel.js")
public class TemplateScalabilityPanel extends PolymerTemplate<TemplateModel> {

@Id("ack-btn")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
*/
@Tag("template-scalability-view")
@HtmlImport("frontend://com/vaadin/flow/uitest/ui/template/template-scalability-view.html")
@JsModule("./template-scalability-view.js")
@JsModule("template-scalability-view.js")
@Route(value = "com.vaadin.flow.uitest.ui.template.TemplateScalabilityView")
@PageTitle("Template scalability")
public class TemplateScalabilityView extends PolymerTemplate<TemplateModel> implements
Expand Down

0 comments on commit c7e2e43

Please sign in to comment.