Skip to content

Commit

Permalink
chore: remove test module test-subcontext (#9394)
Browse files Browse the repository at this point in the history
This module is subsumed by test-router-custom-context.

(cherry picked from commit ea7d5c6)
  • Loading branch information
Johannes Eriksson authored and mshabarov committed Nov 18, 2020
1 parent 7725740 commit 51580d6
Show file tree
Hide file tree
Showing 13 changed files with 0 additions and 496 deletions.
3 changes: 0 additions & 3 deletions flow-tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,6 @@
* Gattling scalability tests. Compatibility mode only.
* test-servlet
* Automatic servlet registration test
* test-subcontext
* `context://` tests for Compatibility mode
* test-themes
* Custom Theme tests for NPM and Compatibility modes
* test-live-reload
Expand All @@ -100,7 +98,6 @@
* Public resources used in test modules:
* test-dev-mode
* test-root-ui-context
* test-subcontext
* test-scalability
* test-servlet
* test-pwa
Expand Down
1 change: 0 additions & 1 deletion flow-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,6 @@
<module>test-mixed/pom-npm.xml</module>
<module>test-dev-mode</module>
<module>test-pwa</module>
<module>test-subcontext</module>
<module>test-root-ui-context</module>
<module>test-router-custom-context</module>
<module>test-live-reload</module>
Expand Down

This file was deleted.

105 changes: 0 additions & 105 deletions flow-tests/test-subcontext/pom.xml
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>

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 51580d6

Please sign in to comment.