Nico Prananta
Nico Prananta
I'm trying to use enzyme following this example for my RN project. I have two components, say `SomeButton` and `SomeText` and they are not in the same directory. ``` javascript...
Just a suggestion, but maybe you can just use CGGeometry instead of writing your own? You can use `CGRectGetMaxX` instead of `NSMaxX`, etc. And using prefix `NS` is a bit...
As mentioned in [this discussion](https://github.com/hyperjumptech/monika/discussions/843), it'd be great if Monika can also check if a postgres is running. Maybe using [this function](https://node-postgres.com/api/client#clientconnect): ```javascript const { Client } = require('pg') const...
As mentioned in [this discussion](https://github.com/hyperjumptech/monika/discussions/843), it'd be great if Monika can also check if a redis server is running. Maybe using ping command as mentioned in [this Stack Overflow](https://stackoverflow.com/a/64934377/401544). Then...
To help debugging easier, let's show the following information when monika is run in verbose mode. - [x] The sent request: URL, method, body if any, headers if any. -...
As mentioned in [this discussion](https://github.com/hyperjumptech/monika/discussions/854), it'd be great if we can use some variables in header, url, and body. For example, ```yaml probes: - id: '1' name: 'Example: get Time'...
As mentioned in the [discussion](https://github.com/hyperjumptech/monika/discussions/830), Monika should be able to create and update incident to Atlassian's Statuspage. References: - https://developer.statuspage.io/#operation/postPagesPageIdIncidents - https://developer.statuspage.io/#operation/putPagesPageIdIncidentsIncidentId
Our current search UI left a lot to be desired. Let's aim to look similar with the one in Remix website.
Now that Monika can create config or run from Postman, Insomnia, HAR, and sitemap, it'd be great if Monika can also create/run from a simple text file that contains the...
Currently monika (1.9.3) creates multiple probes from a sitemap.xml. We should allow the user to create a single probe with multiple requests too because when the probed server is down,...