Skip to content
#

junit

Here are 1,995 public repositories matching this topic...

krichter722
krichter722 commented Mar 24, 2020

docker-compose files which contain container_name are not supported and the creation of DockerComposeContainer fails due to IllegalStateException. This has been introduced in #1151 as a quick fix for unintuitive feedback. If I understand correctly, the option of an implementation was however not discarded, but postponed. This issue is now about the implementation.

Vampire
Vampire commented Apr 13, 2020

If you comment out test cases with a here-doc like

: <<EOC
@test 'to be ignored for now' {
}
EOC

this greatly confuses bats-core.
As far as I have seen from a very quick look, you pre-process the test file line-wise.
So every line that looks like a test, even if just part of a multi-line string or here-doc will be considered a test case and confuse bats-core later on.

nedtwigg
nedtwigg commented Oct 18, 2019

The pg_restore command can take a file argument, or you can pass the file contents over stdin. In order to pass a file, you have to deal with mounting, but over stdin you don't. Right now there's no way to pass content to stdin, and it would be useful if there was.

Maybe add an Optional<byte[]> stdin parameter which would be written to the process stdin?

https://github.com/palantir/doc

andreabisello
andreabisello commented Oct 17, 2019

on a updated windows 10 64bit,
with node 10.16.3,
with jest 1.20,

with a very simple test


describe('Generic Test', () => {

    test("test1", () => {
        expect(2).toBe(2)
    })

});

with this jest.config.js file


    module.exports = {
        preset: "jest-puppeteer",
        setupFilesAfterEnv: [  // NOT setupFiles
            "./custom-configuration.
maksimsarychau
maksimsarychau commented Feb 13, 2020

Description
History logs about changing status for the test should be useful.
Who and when marking it as Passed, linked an issue, etc.
Also, it will be useful to see how many retries have been done to get the current result.

And adding the possibility to mark test for an update. (test case or design was changed). Currently, it will just fail without any readable note.

Value
It

danielshama
danielshama commented Nov 5, 2017

Hi,
I'm trying the remote recording using the documentation example.

`@BeforeClass

public void setUp() throws Exception {

    URL hubUrl = new URL("http://localhost:4444/wd/hub");

    driver = new RemoteWebDriver(hubUrl, DesiredCapabilities.firefox());

    String nodeIp = GridInfoExtractor.getNodeIp(hubUrl, driver.getSessionId().toString());

    VideoRecorder

Improve this page

Add a description, image, and links to the junit topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the junit topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.