-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: remove test module test-subcontext (#9394)
This module is subsumed by test-router-custom-context. (cherry picked from commit ea7d5c6)
- Loading branch information
Showing
13 changed files
with
0 additions
and
496 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 0 additions & 18 deletions
18
flow-tests/test-subcontext/eclipse/UI Test Development Server (subcontext).launch
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,105 +0,0 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>com.vaadin</groupId> | ||
<artifactId>flow-tests</artifactId> | ||
<version>5.0-SNAPSHOT</version> | ||
</parent> | ||
<artifactId>flow-test-subcontext</artifactId> | ||
<name>Flow tests mapped for /context</name> | ||
<packaging>war</packaging> | ||
|
||
<properties> | ||
<maven.deploy.skip>true</maven.deploy.skip> | ||
<server.port>9999</server.port> | ||
<server.stop.port>9998</server.stop.port> | ||
<!-- please remove after https://github.com/vaadin/flow/issues/7575 is fixed --> | ||
<vaadin.useDeprecatedV14Bootstrapping>true</vaadin.useDeprecatedV14Bootstrapping> | ||
<jetty.skip>${maven.test.skip}</jetty.skip> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.vaadin</groupId> | ||
<artifactId>flow-test-resources</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.vaadin</groupId> | ||
<artifactId>flow-maven-plugin</artifactId> | ||
</plugin> | ||
<!-- The Jetty plugin allows us to easily test the development | ||
build by running jetty:run --> | ||
<plugin> | ||
<groupId>org.eclipse.jetty</groupId> | ||
<artifactId>jetty-maven-plugin</artifactId> | ||
<version>${jetty.version}</version> | ||
<executions> | ||
<!-- start and stop jetty (running our app) when running | ||
integration tests --> | ||
<execution> | ||
<id>start-jetty</id> | ||
<phase>pre-integration-test</phase> | ||
<goals> | ||
<goal>start</goal> | ||
</goals> | ||
</execution> | ||
<execution> | ||
<id>stop-jetty</id> | ||
<phase>post-integration-test</phase> | ||
<goals> | ||
<goal>stop</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<webAppConfig> | ||
<contextPath>/context</contextPath> | ||
</webAppConfig> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<profiles> | ||
<profile> | ||
<id>local-run</id> | ||
<activation> | ||
<property> | ||
<name>!test.use.hub</name> | ||
</property> | ||
</activation> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.lazerycode.selenium</groupId> | ||
<artifactId>driver-binary-downloader-maven-plugin</artifactId> | ||
<version>${driver.binary.downloader.maven.plugin.version}</version> | ||
<configuration> | ||
<onlyGetDriversForHostOperatingSystem>true</onlyGetDriversForHostOperatingSystem> | ||
<rootStandaloneServerDirectory>${project.rootdir}/driver</rootStandaloneServerDirectory> | ||
<downloadedZipFileDirectory>${project.rootdir}/driver_zips</downloadedZipFileDirectory> | ||
<customRepositoryMap>${project.rootdir}/drivers.xml</customRepositoryMap> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<phase>pre-integration-test</phase> | ||
<goals> | ||
<goal>selenium</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
|
||
</project> | ||
101 changes: 0 additions & 101 deletions
101
flow-tests/test-subcontext/src/main/java/com/vaadin/flow/contexttest/ui/DependencyUI.java
This file was deleted.
Oops, something went wrong.
55 changes: 0 additions & 55 deletions
55
flow-tests/test-subcontext/src/main/java/com/vaadin/flow/contexttest/ui/NoRouterServlet.java
This file was deleted.
Oops, something went wrong.
42 changes: 0 additions & 42 deletions
42
flow-tests/test-subcontext/src/main/java/com/vaadin/flow/contexttest/ui/RootContextUI.java
This file was deleted.
Oops, something went wrong.
28 changes: 0 additions & 28 deletions
28
flow-tests/test-subcontext/src/main/java/com/vaadin/flow/contexttest/ui/SubContextUI.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.