Giuseppe Matheus
Giuseppe Matheus
I forget the workaround in use: ``` if(process.env.NODE_ENV !== 'test') { const swaggerDocument = YAML.load('./api-openapi.yaml') const swaggerOptions = { port:3002, explorer : true } this.app.use('/swagger', swaggerUi.serve, swaggerUi.setup(swaggerDocument, swaggerOptions)) } ```
Works for me after update. JavaSE-17 [OK] JavaSE-18 [NOK] If you guys are using vim-plug, run `:PlugUpdate`, reopen your workspace and use `:CocCommand java.clean.workspace`. If you installed manually your plugins,...
Please you may try: * Removing final modifier * Removing output flush and close, add try-resource to do this. * Change Path.of(String), to FileSystems.getDefault().getPath(String) for safier fs lookup. ```java public...
It seems to be resolved for maven in this branch: https://github.com/GiuseppeMP/vim-test/commit/ad515fd4ddec12930ee2f63e82873b20c5f9f718 I going to fix gradle afterwards and I need to merge the #662 before.
[update] @cloudlena Now it's working for maven as well, just waiting for the pull request review #662 I fixed the issue #627 together. if you want to test before the...
@codeinabox @cloudlena Hey! I believe this issue can be closed, right?
@DanielCardonaRojas In which language? Java?
@codeinabox Hello, I need some help/thoughts about how to make this in (Java/Maven), I have requirements in mind: 1. The test command needs to start a remote debug server, to...
@codeinabox @DanielCardonaRojas #744
@codeinabox Hey I have implemented TestNearest and TestFile with failsafe here: [fix-#296](https://github.com/GiuseppeMP/vim-test/commit/f5d650d378024b2757929183b0dc61ad04f73a44) I just changed the goal from `mvn test` to `mvn verify` when the `filename` ends with `IT|ITCase|Integration`. I...