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 #46 from webrtc/better-kite-tests
Browse files Browse the repository at this point in the history
Improvement on KITE Engine, tests and Dashboard UI
  • Loading branch information
sajidcosmo committed Jun 20, 2018
2 parents 5f9b4b0 + 9afe7c7 commit 2113ab0
Show file tree
Hide file tree
Showing 104 changed files with 5,732 additions and 6,334 deletions.
2 changes: 1 addition & 1 deletion KITE-AppRTC-Test/configs/local.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/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: 38 additions & 14 deletions KITE-AppRTC-Test/pom.xml
@@ -1,31 +1,55 @@
<?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>

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

<groupId>org.webrtc.kite</groupId>
<artifactId>apprtc-test</artifactId>
<name>apprtc-test</name>
<version>1.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${kite.test.mvn.compiler.version}</version>
<version>3.6.1</version>
<configuration>
<source>${kite.java.version}</source>
<target>${kite.java.version}</target>
<source>1.8</source>
<target>1.8</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 2113ab0

Please sign in to comment.