Martin Hauner
Martin Hauner
I have the same issue with functions exported from a library created with angular cli `ng generate library mylib` which are imported with `import * as ml from 'mylib'`. `spyOn`...
I created a minimal test project to show the issue. Now spying doesn't work in both cases with `spyOn`. Grmpf ;-) It fails with: `Error: : spyMethod is not declared...
This works for me to disable `spotbugsTest` in `build.gradle`: ```kotlin // kotlin dsl tasks { spotbugsTest { onlyIf { false } } } ``` gradle reports it as ``` >...
This also breaks [openapi-processor](https://github.com/openapi-processor/openapi-processor-spring). I have a test-case with $ref-chains (https://github.com/openapi-processor/openapi-processor-core/blob/master/src/testInt/resources/tests/ref-chain-spring-124.1/inputs/openapi.yaml) (just a link because it is a bit complicated to replicate here) that fails when updating from 2.0.28 to...
I don't know. Never used Android Studio. Where is `'compileDebugUnitTestSources'` coming from? Is it used by all Android Studio projects or is it specific to your project? Maybe android could...
Hi, I have uploaded my experimental code to https://github.com/hauner/grails3-cucumber I have added some info to the README, explaining what I tried to do. I plan to do a bit more...
uhh, looks like the reporting in cucumber or grails has changed so that the current mapping from cucumber to junit/grails doesn't fit anymore. See [CucumberTestType](https://github.com/hauner/grails-cucumber/blob/master/src/groovy/grails/plugin/cucumber/CucumberTestType.groovy#L163), you could use the DebugFormatter...
I Looked a minute at the code, the `CucumberFormatter` is the one that tries to translate from cucumber to junit and feeds the `GrailsTestEventPublisher` that is probably the source of...
Hi, I fear that there will be no grails 3 version of the plugin. I tried but didn't really find a way to update it :( There is a [cucumber...
Nope, didn't exist when I tried. But I fear it is a it bit more complicated because the plugin does integrate into the grails 2 test infrastructure and that has...