Posts by L. Calazans • 36 points
5 posts
-
0
votes1
answer60
viewsA: Test failure - setup.ts
You need to inform the jest to ignore your setup.ts. Try adding the following to your package.json ... "jest": { "modulePathIgnorePatterns": [ "__tests__/setup.ts" ] }…
-
2
votes1
answer508
viewsA: Problem going up a page in React
This happens because of the property homepage in the package.json. This is a feature of create-react-app. When he finds this property he assumes this endpoint as the default.…
reactanswered L. Calazans 36 -
0
votes2
answers885
viewsA: Set permissions for app at runtime
You can use the plugin Cordova-Diagnostic-plugin of Cordova for diagnosis and permission request. Here you can find an example of use.…
-
0
votes1
answer60
viewsA: Number of accesses per page
You can use "Web Service/Current Connections", but this data may be inconsistent according to the number of accesses you have. For more information check out this answer in serverfault:…
-
0
votes2
answers672
viewsA: error starting apache tom cat(home page) HTTP state 404
Your application should be inserted into the webapps folder, usually located in the Tomcat installation directory. After this you can access the application through the link…