Alexander Savin
Alexander Savin
It's hard for new-comers when in some docs configs are in `js` format (README.md) and in some in `yml`.
Output of `gemini --version`: 4.18.1 Contents of `.gemini.yml` file: ```yaml rootUrl: http://localhost:3001 gridUrl: http://127.0.0.1:4444/wd/hub browsers: chrome: desiredCapabilities: browserName: chrome system: projectRoot: ../react-starter-kit sourceRoot: ./src exclude: - node_modules/** debug: true parallelLimit:...
How to reproduce: 1. open https://jsfiddle.net/ze4rn61k/1/ 2. be sure that button in the html pan is visible and far enough from window border 3. press the button (you should see...
Way I define assets: ``` {% javascripts output="compiled/js/templates.js" filter="twig_js,closure" 'views/blocks/templates/template.html.twig' %} {% endjavascripts %} ``` Errors: ERROR - required "twig" namespace never provided `goog.require('twig');` ERROR - required "twig.filter" namespace never...
We can use the following code inside twig templates: `{{ loop.parent.loop.index0 }}` It works great on our server, where twig compiles into php files, but it doesn't work when we...
If we have in file.twig code like this: ``` twig {% set myVar = '1' %} {% set myArray = [1, 2] %} {% if myVar in myArray %} 1...
Sometimes it is very useful to set a flag to function - for example, for auto-wrap it in $.memoize in constructor.
It's a feature request. It would be great to have possibility to provide a wrapper component for all components in all tests. Consider [this](https://github.com/apsavin/react-starter-kit/blob/gemini-react/gemini/test.js) example. I need `App` with `context`...
I write tests with gemini-react. When the number of tests grows, I need to increase `httpTimeout` in gemini [config](https://github.com/gemini-testing/gemini/blob/master/doc/config.md) because of timeout errors. It seems that first requests to gemini-react...