From d20f44f49149bb647b862bb1cf13470434143513 Mon Sep 17 00:00:00 2001 From: robfrank Date: Sat, 16 May 2020 16:39:56 +0200 Subject: [PATCH] add gh action badge clenups pom --- README.md | 1 + pom.xml | 7 ------- .../it/robfrank/testcontainers/KotlinSeleniumTest.kt | 4 +++- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index d699392..6049981 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/pom.xml b/pom.xml index 4922923..c214d19 100644 --- a/pom.xml +++ b/pom.xml @@ -137,13 +137,6 @@ ${junit.jupiter.version} test - - org.junit.jupiter - junit-jupiter-api - ${junit.jupiter.version} - test - - org.assertj assertj-core diff --git a/src/test/kotlin/it/robfrank/testcontainers/KotlinSeleniumTest.kt b/src/test/kotlin/it/robfrank/testcontainers/KotlinSeleniumTest.kt index 4c452ff..d1061ea 100644 --- a/src/test/kotlin/it/robfrank/testcontainers/KotlinSeleniumTest.kt +++ b/src/test/kotlin/it/robfrank/testcontainers/KotlinSeleniumTest.kt @@ -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 @@ -42,4 +44,4 @@ class KotlinSeleniumTest { .`as`("The word 'meme' is found on a page about rickrolling") .isTrue() } -} \ No newline at end of file +}