Mufasa🦁

Results 43 comments of Mufasa🦁
trafficstars

Take a look at [`css-loader`'s **importLoaders** option](https://github.com/webpack-contrib/css-loader#importloaders) From docs: ``` use: [ 'style-loader', { loader: 'css-loader', options: { importLoaders: 2, // 0 => no loaders (default); // 1 => postcss-loader;...

Can we make it wait the same _timeout_ amount that cypress waits for before failing an assertion? I'm having the same issue with an Angular app `{{ 'some.text' | translate...

I've to the conclusion that we should **wait** for things that we are asserting against. So in case of images (or translations), the test should ```js it('waits for content', ()...

☝️ this could be a false positive scenario. `cy.injectAxe()` takes time (_~a few ms sometimes_) to load `axe-core` into `window`, which might explain why you don't get any violations reported...

In my case, in `.html` I was referencing `app.js` BEFORE `vendor.js`, reversed/corrected the order, and the `webpackJsonp` error was gone. Hope this helps.

I have a similar issue but it also claims that the app uses `FOREGROUND_SERVICE_HEALTH`even though I do not use it in my app. I've had questions from some users as...

> See the end of this blog post to learn how to remove permissions that this plugin automatically adds. > > https://transistorsoft.medium.com/new-google-play-console-guidelines-for-sensitive-app-permissions-d9d2f4911353 Just started reading it. Thank you.

@himsarevenus I only need simple (background) location tracking (significant changes only). My understanding is `FOREGROUND_SERVICE_HEALTH` is for motion tracking (i.e. steps, biking), which is not what I'm after. So I...

@ianspektor did you figure out the root cause?

I had an animation that was not stopped properly which was causing this error. So maybe pass `indeterminate={!ENV_IS_TESTING}` -- not ideal, but not sure how we can tell Detox to...