Skip to content

Commit

Permalink
add gh action badge
Browse files Browse the repository at this point in the history
clenups pom
  • Loading branch information
robfrank committed May 16, 2020
1 parent 5dfcad5 commit d20f44f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[![Build Status](https://travis-ci.org/robfrank/testcontainers-examples.svg?branch=master)](https://travis-ci.org/robfrank/testcontainers-examples)
![Java CI](https://github.com/robfrank/testcontainers-examples/workflows/Java%20CI/badge.svg)
[![security status](https://www.meterian.com/badge/gh/robfrank/testcontainers-examples/security)](https://www.meterian.com/report/gh/robfrank/testcontainers-examples)
[![stability status](https://www.meterian.com/badge/gh/robfrank/testcontainers-examples/stability)](https://www.meterian.com/report/gh/robfrank/testcontainers-examples)
[![Known Vulnerabilities](https://snyk.io//test/github/robfrank/testcontainers-examples/badge.svg?targetFile=pom.xml)](https://snyk.io//test/github/robfrank/testcontainers-examples?targetFile=pom.xml)
Expand Down
7 changes: 0 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,6 @@
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@ import org.openqa.selenium.remote.DesiredCapabilities
import org.testcontainers.containers.BrowserWebDriverContainer
import org.testcontainers.containers.BrowserWebDriverContainer.VncRecordingMode.RECORD_ALL
import org.testcontainers.junit.jupiter.Container
import org.testcontainers.junit.jupiter.Testcontainers
import java.io.File

/**
* Simple example of plain Selenium usage.
*/
@Testcontainers
class KotlinSeleniumTest {

@Container
Expand Down Expand Up @@ -42,4 +44,4 @@ class KotlinSeleniumTest {
.`as`("The word 'meme' is found on a page about rickrolling")
.isTrue()
}
}
}

0 comments on commit d20f44f

Please sign in to comment.