Dennis Thisner

Results 6 comments of Dennis Thisner

@babangsund Would be amazing if we could merge this and make a new release :)

@lukasjelonek I used their code to copy what they where doing and make it my own logout. https://github.com/babangsund/cypress-keycloak/blob/06f519983e1222c5af0edde02173e10cfcbd0a1c/src/logout.ts This is what I ended up with: ```javascript Cypress.Commands.add('logoutKC', () => {...

@christoph-daehne your solution works, thinking about a neat way of turning it off/on, since it clutter up the console. Still, this is amazing and makes my life so much easier...

@lems3 That seems to work, thank you :)

Here is another example: ```js const rollupPreprocessor = require('cypress-rollup-preprocessor') const cucumber = require('cypress-cucumber-preprocessor').default module.exports = (on, config) => { on('file:preprocessor', cucumber()) const options = { rollupOptions: require('../../rollup.config.js') } on('file:preprocessor', rollupPreprocessor(options))...