Skip to content
This repository has been archived by the owner on Dec 11, 2023. It is now read-only.

Commit

Permalink
Merge pull request #56 from webrtc/PR-20th-June
Browse files Browse the repository at this point in the history
Major updates on tests and UI
  • Loading branch information
emmanuelandre committed Jun 20, 2018
2 parents 2113ab0 + b05e0cd commit 376a23d
Show file tree
Hide file tree
Showing 369 changed files with 22,134 additions and 25,495 deletions.
11 changes: 7 additions & 4 deletions KITE-AppRTC-Test/configs/local.config.json
Expand Up @@ -11,25 +11,28 @@
{
"name": "IceConnectionTest",
"tupleSize": 2,
"description":"This test check the ICEConnection state between two browsers communicating via appr.tc",
"description": "This test check the ICEConnection state between two browsers communicating via appr.tc",
"testImpl": "org.webrtc.kite.IceConnectionTest"
}
],
"browsers": [
{
"browserName": "chrome",
"version": "57.0",
"platform": "MAC"
"platform": "MAC",
"flags": []
},
{
"browserName": "firefox",
"version": "45.0",
"platform": "LINUX"
"platform": "LINUX",
"flags": []
},
{
"browserName": "MicrosoftEdge",
"version": "14.0",
"platform": "WINDOWS"
"platform": "WINDOWS",
"flags": []
}
]
}
2 changes: 1 addition & 1 deletion KITE-AppRTC-Test/configs/local.sauce.bs.config.json
Expand Up @@ -21,7 +21,7 @@
{
"name": "IceConnectionTest",
"tupleSize": 2,
"description":"This test check the ICEConnection state between two browsers communicating via appr.tc",
"description": "This test check the ICEConnection state between two browsers communicating via appr.tc",
"testImpl": "org.webrtc.kite.IceConnectionTest"
}
],
Expand Down
2 changes: 1 addition & 1 deletion KITE-AppRTC-Test/configs/local.sauce.bs.tb.config.json
Expand Up @@ -26,7 +26,7 @@
{
"name": "IceConnectionTest",
"tupleSize": 2,
"description":"This test check the ICEConnection state between two browsers communicating via appr.tc",
"description": "This test check the ICEConnection state between two browsers communicating via appr.tc",
"testImpl": "org.webrtc.kite.IceConnectionTest"
}
],
Expand Down
2 changes: 1 addition & 1 deletion KITE-AppRTC-Test/configs/local.sauce.config.json
Expand Up @@ -16,7 +16,7 @@
{
"name": "IceConnectionTest",
"tupleSize": 2,
"description":"This test check the ICEConnection state between two browsers communicating via appr.tc",
"description": "This test check the ICEConnection state between two browsers communicating via appr.tc",
"testImpl": "org.webrtc.kite.IceConnectionTest"
}
],
Expand Down
2 changes: 1 addition & 1 deletion KITE-AppRTC-Test/configs/mobile.config.json
Expand Up @@ -11,7 +11,7 @@
{
"name": "IceConnectionTest",
"tupleSize": 2,
"description":"This test check the ICEConnection state between two browsers communicating via appr.tc",
"description": "This test check the ICEConnection state between two browsers communicating via appr.tc",
"testImpl": "org.webrtc.kite.IceConnectionTest"
}
],
Expand Down
2 changes: 1 addition & 1 deletion KITE-AppRTC-Test/configs/sauce.bs.config.json
Expand Up @@ -17,7 +17,7 @@
{
"name": "IceConnectionTest",
"tupleSize": 2,
"description":"This test check the ICEConnection state between two browsers communicating via appr.tc",
"description": "This test check the ICEConnection state between two browsers communicating via appr.tc",
"testImpl": "org.webrtc.kite.IceConnectionTest"
}
],
Expand Down
2 changes: 1 addition & 1 deletion KITE-AppRTC-Test/configs/sauce.bs.tb.config.json
Expand Up @@ -22,7 +22,7 @@
{
"name": "IceConnectionTest",
"tupleSize": 2,
"description":"This test check the ICEConnection state between two browsers communicating via appr.tc",
"description": "This test check the ICEConnection state between two browsers communicating via appr.tc",
"testImpl": "org.webrtc.kite.IceConnectionTest"
}
],
Expand Down
2 changes: 1 addition & 1 deletion KITE-AppRTC-Test/configs/sauce.config.json
Expand Up @@ -12,7 +12,7 @@
{
"name": "IceConnectionTest",
"tupleSize": 2,
"description":"This test check the ICEConnection state between two browsers communicating via appr.tc",
"description": "This test check the ICEConnection state between two browsers communicating via appr.tc",
"testImpl": "org.webrtc.kite.IceConnectionTest"
}
],
Expand Down
52 changes: 14 additions & 38 deletions KITE-AppRTC-Test/pom.xml
@@ -1,55 +1,31 @@
<?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">
<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>

<groupId>org.webrtc.kite</groupId>
<artifactId>apprtc-test</artifactId>
<version>1.0</version>
<parent>
<groupId>org.webrtc.kite</groupId>
<artifactId>kite-base-test</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../KITE-Base-Test/pom.xml</relativePath>
</parent>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<artifactId>apprtc-test</artifactId>
<name>apprtc-test</name>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<version>${kite.test.mvn.compiler.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>${kite.java.version}</source>
<target>${kite.java.version}</target>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.webrtc.kite</groupId>
<artifactId>kite-if</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.webrtc.kite</groupId>
<artifactId>kite</artifactId>
<version>1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>

</project>

0 comments on commit 376a23d

Please sign in to comment.