testcontainers-spock icon indicating copy to clipboard operation
testcontainers-spock copied to clipboard

Spock extension for using Docker containers in Spock tests. (DEPRECATED, moved to main repo!)

Results 5 testcontainers-spock issues
Sort by recently updated
recently updated
newest added

Although Jitpack is a good solution, a mature library should provide their artifacts in Maven Central as well.

enhancement
help wanted

I use Selenium Webdriver: ``` @Shared public BrowserWebDriverContainer chrome = new BrowserWebDriverContainer() .withDesiredCapabilities(DesiredCapabilities.chrome()) .withRecordingMode(RECORD_ALL, new File("./build/")) ``` But the recording always appeared under `./.tmp-volume-1503438720097/screen.flv`. How I can change this behavior?

When trying to test a Spring-Boot app with an exclusive database container, it's necessary to start the container in the `setupSpec()` phase, so the first `SpringApplicationContext` can be initialized correctly.

enhancement